diff --git a/config/btop/btop.conf b/config/btop/btop.conf index b935e34..a39be15 100644 --- a/config/btop/btop.conf +++ b/config/btop/btop.conf @@ -47,7 +47,7 @@ graph_symbol_net = "default" graph_symbol_proc = "default" #* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace. -shown_boxes = "cpu mem net proc" +shown_boxes = "mem net proc cpu" #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 2000 @@ -184,7 +184,7 @@ net_upload = 100 net_auto = True #* Sync the auto scaling for download and upload to whichever currently has the highest scale. -net_sync = False +net_sync = True #* Starts with the Network Interface specified here. net_iface = "" diff --git a/config/htop/htoprc b/config/htop/htoprc index 3503253..9d8a8cb 100644 --- a/config/htop/htoprc +++ b/config/htop/htoprc @@ -21,7 +21,7 @@ highlight_changes_delay_secs=5 find_comm_in_cmdline=1 strip_exe_from_cmdline=1 show_merged_command=0 -tree_view=0 +tree_view=1 tree_view_always_by_pid=0 all_branches_collapsed=0 header_margin=1 diff --git a/config/nvim/init.vim b/config/nvim/init.vim index 16fb66f..bd56aba 100644 --- a/config/nvim/init.vim +++ b/config/nvim/init.vim @@ -188,7 +188,7 @@ local servers = { 'ansiblels', 'bashls', 'ccls', - 'gdscript' + 'gdscript', } -- Setup lspconfig. @@ -232,6 +232,16 @@ nvim_lsp.rust_analyzer.setup({ } }) +nvim_lsp.tailwindcss.setup({ + on_attach = on_attach, + capabilities = capabilities, + settings = { + tailwindCSS = { + emmetCompletions = true, + } + } +}) + require('rust-tools').setup({ tools = { -- rust-tools options autoSetHints = true,