diff --git a/common/.config/btop/btop.conf b/common/.config/btop/btop.conf index 181309e..7037a57 100644 --- a/common/.config/btop/btop.conf +++ b/common/.config/btop/btop.conf @@ -54,7 +54,7 @@ update_ms = 400 #* 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. -proc_sorting = "memory" +proc_sorting = "cpu direct" #* Reverse sorting order, True or False. proc_reversed = False diff --git a/common/.config/nvim/lua/plugins.lua b/common/.config/nvim/lua/plugins.lua index af7da23..abc69ae 100644 --- a/common/.config/nvim/lua/plugins.lua +++ b/common/.config/nvim/lua/plugins.lua @@ -186,9 +186,11 @@ return { }, { 'lukas-reineke/indent-blankline.nvim', + main = 'ibl', opts = { - char = '│', - filetype_exclude = { 'help', 'alpha', 'dashboard', 'neo-tree', 'Trouble', 'lazy' }, + debounce = 100, + indent = { char = '│' }, + whitespace = { highlight = { "Whitespace", "NonText" } }, } }, { @@ -257,12 +259,19 @@ return { hint_prefix = '🚀' }, }, + { + 'rcarriga/nvim-dap-ui', + dependencies = { + 'mfussenegger/nvim-dap', + }, + lazy = false + }, { "lervag/vimtex", lazy = false, keys = { { 'll', 'VimtexCompileSS', desc = "Compile LaTeX" }, - { 'lc', 'VimtexCompile', desc = "Compile LaTeX Continuously" }, + { 'lc', 'VimtexCompile', desc = "Compile LaTeX Continuously" }, }, config = function() vim.g.vimtex_view_method = 'zathura'