1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-06-07 20:49:29 +00:00
This commit is contained in:
Rae 5e 2025-06-05 17:23:51 -04:00
parent d5a3f52bad
commit 22f8fdd88c
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
2 changed files with 8 additions and 5 deletions

View file

@ -7,23 +7,22 @@ vim.opt.shiftwidth = 4
vim.opt.expandtab = true vim.opt.expandtab = true
vim.opt.number = true vim.opt.number = true
-- TODO: run :Neotree on VimEnter autocmd
-- neo-tree -- neo-tree
require("neo-tree").setup { require("neo-tree").setup {
default_component_configs = { default_component_configs = {
git_status = { git_status = {
symbols = { symbols = {
added = "+", added = "+",
conflict = "!" conflict = "!",
deleted = "-", deleted = "-",
ignored = ".", ignored = ".",
modified = "/", modified = "/",
renamed = ">", renamed = ">",
staged = "S", staged = "S",
unstaged = "U", unstaged = "u",
untracked = "U", untracked = "U"
}
} }
},
icon = { icon = {
folder_closed = "-", folder_closed = "-",
folder_open = "+", folder_open = "+",
@ -88,6 +87,8 @@ lc.clangd.setup {
capabilities = caps, capabilities = caps,
cmd = { "clangd" } cmd = { "clangd" }
} }
lc.lua_ls.setup { capabilities = caps }
lc.mesonlsp.setup { capabilities = caps }
lc.nil_ls.setup { lc.nil_ls.setup {
autostart = true, autostart = true,
capabilities = caps, capabilities = caps,
@ -95,3 +96,4 @@ lc.nil_ls.setup {
} }
lc.ts_ls.setup { capabilities = caps } lc.ts_ls.setup { capabilities = caps }
lc.vala_ls.setup { capabilities = caps } lc.vala_ls.setup { capabilities = caps }

View file

@ -21,6 +21,7 @@
python313 # High-level dynamically-typed programming language python313 # High-level dynamically-typed programming language
vala # Compiler for GObject type system vala # Compiler for GObject type system
## language servers ## language servers
lua-language-server # Lua
mesonlsp # Meson mesonlsp # Meson
nil # Nix nil # Nix
rust-analyzer # Rust rust-analyzer # Rust