From f595df556ff237b5379e745b128ddadbaa78504e Mon Sep 17 00:00:00 2001 From: Segcolt Date: Sat, 2 May 2026 20:55:41 -0300 Subject: [PATCH] Update config --- lua/community.lua | 4 +++- lua/plugins/astrocore.lua | 8 +++++++- lua/plugins/editor.lua | 8 ++++++++ lua/plugins/kitty.lua | 4 ++++ 4 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 lua/plugins/kitty.lua diff --git a/lua/community.lua b/lua/community.lua index 2e0f945..b004a4a 100644 --- a/lua/community.lua +++ b/lua/community.lua @@ -26,13 +26,15 @@ return { { import = "astrocommunity.quickfix.nvim-bqf" }, + { import = "astrocommunity.markdown-and-latex.vimtex" }, + -- { import = "astrocommunity.diagnostics.lsp_lines-nvim" }, -- { import = "astrocommunity.diagnostics.trouble-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" }, diff --git a/lua/plugins/astrocore.lua b/lua/plugins/astrocore.lua index db2530c..89f3b8e 100644 --- a/lua/plugins/astrocore.lua +++ b/lua/plugins/astrocore.lua @@ -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", diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index 4b00746..2ed0b87 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -135,4 +135,12 @@ return { }, opts = { n_lines = 200 }, }, + { "karb94/neoscroll.nvim", + lazy = false, + opts = { + hide_cursor = true, + stop_eof = true, + mappings = {'', '', '', ''} + } + } } diff --git a/lua/plugins/kitty.lua b/lua/plugins/kitty.lua new file mode 100644 index 0000000..b8da128 --- /dev/null +++ b/lua/plugins/kitty.lua @@ -0,0 +1,4 @@ +return { + "knubie/vim-kitty-navigator", + lazy = false +}