complete refactor with kickstart.nvim
This commit is contained in:
parent
f3d84f90cd
commit
897d00ad32
16 changed files with 571 additions and 404 deletions
29
.config/nvim/lua/custom/plugins.lua
Normal file
29
.config/nvim/lua/custom/plugins.lua
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
return function(use)
|
||||
use("folke/tokyonight.nvim")
|
||||
|
||||
-- formatting & linting
|
||||
use("jose-elias-alvarez/null-ls.nvim")
|
||||
-- use("jayp0521/mason-null-ls.nvim")
|
||||
|
||||
use({
|
||||
"kylechui/nvim-surround",
|
||||
tag = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||
config = function()
|
||||
require("nvim-surround").setup({
|
||||
-- Configuration here, or leave empty to use defaults
|
||||
})
|
||||
end,
|
||||
})
|
||||
|
||||
use({
|
||||
"folke/trouble.nvim",
|
||||
requires = "nvim-tree/nvim-web-devicons",
|
||||
config = function()
|
||||
require("trouble").setup({
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
})
|
||||
end,
|
||||
})
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue