Update config
This commit is contained in:
@@ -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" },
|
||||||
|
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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
4
lua/plugins/kitty.lua
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
return {
|
||||||
|
"knubie/vim-kitty-navigator",
|
||||||
|
lazy = false
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user