
* feat: init lazy.nvim * refactor: easy plugin init * feat: user defined plugins * refactor: clean up user config * refactor: clean up lsp plugins * fix: lsp signature * fix: null ls user config * feat: replace commands * feat: optimize lazy loading * fix: lsp_signature working * fix: documentation hover/sig help * fix: autopairs * feat: clean up luasnips * fix auto complete * moar laziness * feat: add markdown_inline to ensured_installed for TS * clean up * clean up auto-session
9 lines
208 B
Lua
9 lines
208 B
Lua
if vim.fn.has('nvim-0.8') == 0 then
|
|
error('Need Neovim v0.8+ in order to run Cosmic!')
|
|
end
|
|
|
|
local ok, err = pcall(require, 'cosmic')
|
|
|
|
if not ok then
|
|
error(('Error loading core...\n\n%s'):format(err))
|
|
end
|