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

@ -45,6 +45,7 @@ local M = {
TypeParameter = "󰅲",
Copilot = "",
},
telescope = "",
}
return M

View file

@ -0,0 +1,16 @@
require("plugins.lazy-nvim")
require("lazy").setup({
spec = {
-- import your plugins
-- { import = "plugins.completion" },
-- { import = "plugins.fileutils" },
-- { 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 },
})

View file

@ -1,6 +1,4 @@
-- Debugger setups
return {
{
"mfussenegger/nvim-dap",
}
{ import = "plugins.mod.dap-setup" },
}

View file

@ -20,19 +20,21 @@ return {
{
"echasnovski/mini.pairs",
version = false,
config = function()
require("mini.pairs").setup()
end,
opts = {},
-- config = function()
-- require("mini.pairs").setup()
-- end,
},
{
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end,
opts = {},
-- config = function()
-- require("nvim-surround").setup({
-- -- Configuration here, or leave empty to use defaults
-- })
-- end,
},
{
"MagicDuck/grug-far.nvim",

View file

@ -1,2 +1,18 @@
-- Entry point of the plugin manager
require("plugins.lazy-nvim")
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- import your plugins
{ import = "plugins.appearance" },
{ import = "plugins.completion" },
{ import = "plugins.fileutils" },
{ 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 },
})

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 },
})

View file

@ -0,0 +1,3 @@
return {
"mfussenegger/nvim-dap",
}