This commit is contained in:
2022-03-10 12:08:44 +04:00
parent 30238b5b40
commit 9d32b2fbfd
3 changed files with 14 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ graph_symbol_net = "default"
graph_symbol_proc = "default" graph_symbol_proc = "default"
#* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace. #* 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 time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
update_ms = 2000 update_ms = 2000
@@ -184,7 +184,7 @@ net_upload = 100
net_auto = True net_auto = True
#* Sync the auto scaling for download and upload to whichever currently has the highest scale. #* 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. #* Starts with the Network Interface specified here.
net_iface = "" net_iface = ""

View File

@@ -21,7 +21,7 @@ highlight_changes_delay_secs=5
find_comm_in_cmdline=1 find_comm_in_cmdline=1
strip_exe_from_cmdline=1 strip_exe_from_cmdline=1
show_merged_command=0 show_merged_command=0
tree_view=0 tree_view=1
tree_view_always_by_pid=0 tree_view_always_by_pid=0
all_branches_collapsed=0 all_branches_collapsed=0
header_margin=1 header_margin=1

View File

@@ -188,7 +188,7 @@ local servers = {
'ansiblels', 'ansiblels',
'bashls', 'bashls',
'ccls', 'ccls',
'gdscript' 'gdscript',
} }
-- Setup lspconfig. -- 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({ require('rust-tools').setup({
tools = { -- rust-tools options tools = { -- rust-tools options
autoSetHints = true, autoSetHints = true,