You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
697 B
Lua
30 lines
697 B
Lua
2 years ago
|
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
|