added fuzzel, nvim-tree and updated

This commit is contained in:
Nico
2025-09-05 03:13:36 +02:00
parent 3cb6e5d907
commit e39404d44d
17 changed files with 420 additions and 78 deletions

View File

@@ -7,8 +7,9 @@ return {
servers = {
lua_ls = {},
nil_ls = {},
-- vue_ls = {},
-- rust_analyzer = {},
gopls = {},
-- gopls = {},
}
},
config = function(_, opts)

View File

@@ -0,0 +1,15 @@
return {
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup({
view = {
width = 30,
},
})
end,
}

View File

@@ -0,0 +1,6 @@
return {
'chomosuke/typst-preview.nvim',
lazy = false, -- or ft = 'typst'
version = '1.*',
opts = {}, -- lazy.nvim will implicitly calls `setup {}`
}