This commit is contained in:
Zacharias-Brohn
2025-02-07 21:00:50 +01:00
parent 3d77af4231
commit a0ecbb3dc8
19 changed files with 741 additions and 26 deletions
+5 -5
View File
@@ -102,11 +102,11 @@ local servers = {
"zls",
}
lspconfig.hyprls.setup {
root_dir = vim.fs.root( 0, 'hyprland.conf' ),
single_file_support = false,
filetypes = { "conf" },
}
-- lspconfig.hyprls.setup {
-- root_dir = vim.fs.root( 0, 'hyprland.conf' ),
-- single_file_support = false,
-- filetypes = { "conf" },
-- }
-- lsps with default config
for _, lsp in ipairs(servers) do
+2 -2
View File
@@ -27,8 +27,8 @@ vim.opt.updatetime = 50
vim.opt.colorcolumn = "80"
vim.opt.textwidth = 80
vim.opt.formatoptions = "tcrqnja"
vim.opt.textwidth = 0
vim.opt.formatoptions = "tcrqnj"
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
+15
View File
@@ -0,0 +1,15 @@
pcall(function()
dofile(vim.g.base46_cache .. "syntax")
dofile(vim.g.base46_cache .. "treesitter")
end)
return {
ensure_installed = "all",
sync_install = false,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}