diff --git a/common/.config/btop/btop.conf b/common/.config/btop/btop.conf index 592d5ce..7c5f96e 100644 --- a/common/.config/btop/btop.conf +++ b/common/.config/btop/btop.conf @@ -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" \ No newline at end of file diff --git a/common/.config/nvim/lua/basics.lua b/common/.config/nvim/lua/basics.lua index b2f19e7..f01e16e 100644 --- a/common/.config/nvim/lua/basics.lua +++ b/common/.config/nvim/lua/basics.lua @@ -3,6 +3,9 @@ vim.g.mapleader = ',' + +vim.keymap.set({'n', 'v', 'o', 's'}, '', '', {remap = true}) + -- ================= File management ================= -- -- swapfile has global & local config, eventhough help says otherwise diff --git a/common/.config/nvim/lua/plugin-config/nvim-tree.lua b/common/.config/nvim/lua/plugin-config/nvim-tree.lua index d96ea7f..bec1007 100644 --- a/common/.config/nvim/lua/plugin-config/nvim-tree.lua +++ b/common/.config/nvim/lua/plugin-config/nvim-tree.lua @@ -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, },