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

@@ -26,13 +26,15 @@ return {
{ import = "astrocommunity.quickfix.nvim-bqf" }, { import = "astrocommunity.quickfix.nvim-bqf" },
{ import = "astrocommunity.markdown-and-latex.vimtex" },
-- { import = "astrocommunity.diagnostics.lsp_lines-nvim" }, -- { import = "astrocommunity.diagnostics.lsp_lines-nvim" },
-- { import = "astrocommunity.diagnostics.trouble-nvim" }, -- { import = "astrocommunity.diagnostics.trouble-nvim" },
{ import = "astrocommunity.editing-support.rainbow-delimiters-nvim" }, { import = "astrocommunity.editing-support.rainbow-delimiters-nvim" },
{ import = "astrocommunity.editing-support.ultimate-autopair-nvim" }, -- { import = "astrocommunity.editing-support.ultimate-autopair-nvim" },
{ import = "astrocommunity.indent.mini-indentscope" }, { import = "astrocommunity.indent.mini-indentscope" },

View File

@@ -22,7 +22,7 @@ return {
-- Configure core features of AstroNvim -- Configure core features of AstroNvim
features = { features = {
large_buf = { size = 1024 * 500, lines = 10000 }, -- set global limits for large files for disabling features like treesitter 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 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) 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 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) 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 ui_notifications_enabled = true, -- disable notifications when toggling UI elements
c_syntax_for_h = 1, 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_root = '~/Documentos/Wiki',
wiki_journal = { wiki_journal = {
name = "journal", name = "journal",

View File

@@ -135,4 +135,12 @@ return {
}, },
opts = { n_lines = 200 }, 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
}