Update config
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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
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