feat(nvim): Neovide integration

This commit is contained in:
js0ny 2025-02-23 19:52:54 +00:00
parent 48a93e2998
commit cb81dc8d53
8 changed files with 71 additions and 32 deletions

View file

@ -20,21 +20,3 @@ vim.opt.rtp:prepend(lazypath)
-- This is also a good place to setup other settings (vim.opt)
vim.g.mapleader = " "
vim.g.maplocalleader = "\\"
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- import your plugins
{ import = "plugins.appearance" },
{ import = "plugins.completion" },
{ import = "plugins.fileutils" },
{ import = "plugins.dap" },
{ import = "plugins.lsp" },
{ import = "plugins.edit" },
{ import = "plugins.misc" },
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
-- automatically check for plugin updates
checker = { enabled = true },
})