This commit is contained in:
Benjamin Kyd
2023-10-07 23:40:13 +01:00
parent a76ba0fd36
commit 93216f652f
2 changed files with 13 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ update_ms = 400
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
proc_sorting = "memory" proc_sorting = "cpu direct"
#* Reverse sorting order, True or False. #* Reverse sorting order, True or False.
proc_reversed = False proc_reversed = False

View File

@@ -186,9 +186,11 @@ return {
}, },
{ {
'lukas-reineke/indent-blankline.nvim', 'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
opts = { opts = {
char = '', debounce = 100,
filetype_exclude = { 'help', 'alpha', 'dashboard', 'neo-tree', 'Trouble', 'lazy' }, indent = { char = '' },
whitespace = { highlight = { "Whitespace", "NonText" } },
} }
}, },
{ {
@@ -257,12 +259,19 @@ return {
hint_prefix = '🚀' hint_prefix = '🚀'
}, },
}, },
{
'rcarriga/nvim-dap-ui',
dependencies = {
'mfussenegger/nvim-dap',
},
lazy = false
},
{ {
"lervag/vimtex", "lervag/vimtex",
lazy = false, lazy = false,
keys = { keys = {
{ '<leader>ll', '<cmd>VimtexCompileSS<cr>', desc = "Compile LaTeX" }, { '<leader>ll', '<cmd>VimtexCompileSS<cr>', desc = "Compile LaTeX" },
{ '<leader>lc', '<cmd>VimtexCompile<cr>', desc = "Compile LaTeX Continuously" }, { '<leader>lc', '<cmd>VimtexCompile<cr>', desc = "Compile LaTeX Continuously" },
}, },
config = function() config = function()
vim.g.vimtex_view_method = 'zathura' vim.g.vimtex_view_method = 'zathura'