This commit is contained in:
2024-01-28 22:20:37 +01:00
parent 7f9c18536b
commit 56e9bb7d04
4 changed files with 51 additions and 13 deletions
+20 -12
View File
@@ -1,17 +1,26 @@
local plugins = {
-- {{{ lsp stuff
-- {{{ basic lsp
-- {{{ lsp
-- {{{ basic lsp stuff
{
"neovim/nvim-lspconfig",
event = "VeryLazy",
event = "VeryLazy",
dependencies = {
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
event = "VeryLazy"
}
}, -- }}}
{
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
},
},
},
{
"williamboman/mason-lspconfig.nvim",
event = "VeryLazy",
dependencies = {
"williamboman/mason.nvim"
}
},-- }}}
-- {{{ snipplets
{
@@ -38,7 +47,6 @@ local plugins = {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
lazy = true
vim.o.timeout = true
vim.o.timeoutlen = 0
require("which-key").setup(opts)
@@ -65,7 +73,7 @@ local plugins = {
--better borders for split screen
{
"nvim-zh/colorful-winsep.nvim",
event = "VeryLazy",
event = "WinNew",
config = function ()
require('colorful-winsep').setup()
end