This commit is contained in:
Ben Kyd
2023-04-12 22:33:03 +01:00
parent 617679a6a9
commit a4b208242f
3 changed files with 9 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
color_theme = "Default"
#* If the theme set background should be shown, set to False if you want terminal background transparency.
theme_background = False
theme_background = False
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
truecolor = True
@@ -54,13 +54,13 @@ update_ms = 2000
#* 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 = "cpu lazy"
proc_sorting = "memory"
#* Reverse sorting order, True or False.
proc_reversed = False
#* Show processes as a tree.
proc_tree = False
proc_tree = True
#* Use the cpu graph colors in the process list.
proc_colors = True
@@ -209,4 +209,4 @@ selected_battery = "Auto"
#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
log_level = "WARNING"
log_level = "WARNING"

View File

@@ -3,6 +3,9 @@
vim.g.mapleader = ','
vim.keymap.set({'n', 'v', 'o', 's'}, '<space>', '<leader>', {remap = true})
-- ================= File management ================= --
-- swapfile has global & local config, eventhough help says otherwise

View File

@@ -1,8 +1,8 @@
require("nvim-tree").setup({
hijack_unnamed_buffer_when_opening = true,
open_on_setup = false,
open_on_setup_file = false,
--open_on_setup = false,
--open_on_setup_file = false,
update_focused_file = {
enable = true,
},