Update config

This commit is contained in:
2026-05-02 20:55:41 -03:00
parent 5a1094d59e
commit f595df556f
4 changed files with 22 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ return {
-- Configure core features of AstroNvim
features = {
large_buf = { size = 1024 * 500, lines = 10000 }, -- set global limits for large files for disabling features like treesitter
autopairs = true, -- enable autopairs at start
autopairs = false, -- enable autopairs at start
cmp = true, -- enable completion at start
diagnostics_mode = 3, -- diagnostic mode on start (0 = off, 1 = no signs/virtual text, 2 = no virtual text, 3 = on)
highlighturl = true, -- highlight URLs at start
@@ -61,6 +61,12 @@ return {
icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
ui_notifications_enabled = true, -- disable notifications when toggling UI elements
c_syntax_for_h = 1,
-- Vimtex
vimtex_view_method = "zathura",
vimtex_compiler_latexmk = {
aux_dir = "/run/user/1000/vimtex-aux"
},
-- Wiki
wiki_root = '~/Documentos/Wiki',
wiki_journal = {
name = "journal",

View File

@@ -135,4 +135,12 @@ return {
},
opts = { n_lines = 200 },
},
{ "karb94/neoscroll.nvim",
lazy = false,
opts = {
hide_cursor = true,
stop_eof = true,
mappings = {'<C-u>', '<C-d>', '<C-b>', '<C-f>'}
}
}
}

4
lua/plugins/kitty.lua Normal file
View File

@@ -0,0 +1,4 @@
return {
"knubie/vim-kitty-navigator",
lazy = false
}