updated a bunch

This commit is contained in:
2026-05-20 18:14:15 +02:00
parent 45fb878bd1
commit 8989c7927c
29 changed files with 680 additions and 514 deletions
+25 -1
View File
@@ -1,6 +1,6 @@
-- Set leader key to Space
vim.g.mapleader = " "
vim.g.maplocalleader = " "
vim.g.maplocalleader = ","
-- Load basic settings
require("config.options")
@@ -14,3 +14,27 @@ require("config.lsp")
require("config.treesitter")
require("config.telescope")
require("config.cmp")
-- VimTeX Config
vim.g.vimtex_view_method = 'zathura'
vim.g.vimtex_compiler_method = 'latexmk'
vim.g.vimtex_compiler_latexmk = {
build_dir = 'out'
}
-- Language Checks
vim.api.nvim_create_autocmd("FileType", {
pattern = { "tex", "plaintex", "latex", "markdown" },
callback = function()
vim.opt_local.spell = true
vim.opt_local.linebreak = true
vim.opt_local.spelllang = { "de_de", "en_us" }
end,
})
-- Diable Copilot on Start
vim.g.copilot_filetypes = {
["*"] = false,
}