diff options
author | Franciszek Malinka <franciszek.malinka@gmail.com> | 2022-06-07 18:46:57 +0200 |
---|---|---|
committer | Franciszek Malinka <franciszek.malinka@gmail.com> | 2022-06-07 18:46:57 +0200 |
commit | 7e4298b9bbc2699433106a24251c8bea58ef0773 (patch) | |
tree | a53c7d86a096f8db0552e01bf7deb8371c438875 /lua | |
parent | 319440802fe48f7526f5d2b40239e1e6b9ae9db7 (diff) |
Some updates
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/nvimtree.lua | 32 | ||||
-rw-r--r-- | lua/user/options.lua | 1 | ||||
-rw-r--r-- | lua/user/plugins.lua | 1 |
3 files changed, 18 insertions, 16 deletions
diff --git a/lua/user/nvimtree.lua b/lua/user/nvimtree.lua index a9c46c9..9e66654 100644 --- a/lua/user/nvimtree.lua +++ b/lua/user/nvimtree.lua @@ -42,10 +42,10 @@ nvim_tree.setup { open_on_tab = false, hijack_cursor = false, update_cwd = true, - update_to_buf_dir = { - enable = true, - auto_open = true, - }, + -- update_to_buf_dir = { + -- enable = true, + -- auto_open = true, + -- }, diagnostics = { enable = true, icons = { @@ -70,7 +70,7 @@ nvim_tree.setup { height = 30, hide_root_folder = false, side = "left", - auto_resize = true, + -- auto_resize = true, mappings = { custom_only = false, list = { @@ -82,15 +82,15 @@ nvim_tree.setup { number = false, relativenumber = false, }, - quit_on_open = 0, - git_hl = 1, - disable_window_picker = 0, - root_folder_modifier = ":t", - show_icons = { - git = 1, - folders = 1, - files = 1, - folder_arrows = 1, - tree_width = 30, - }, + -- quit_on_open = 0, + -- git_hl = 1, + -- disable_window_picker = 0, + -- root_folder_modifier = ":t", + -- show_icons = { + -- git = 1, + -- folders = 1, + -- files = 1, + -- folder_arrows = 1, + -- tree_width = 30, + -- }, } diff --git a/lua/user/options.lua b/lua/user/options.lua index 2b2b4f7..a33decb 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -15,6 +15,7 @@ local options = { updatetime = 300, splitright = true, splitbelow = true, + ignorecase = true, smartcase = true, mouse = "a", fileencoding = "utf-8", diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index fd58732..c1c8e8c 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -71,6 +71,7 @@ return packer.startup(function(use) use 'cxw42/editorconfig-vim' use 'morhetz/gruvbox' use "lunarvim/colorschemes" + use "freeo/vim-kalisi" -- use "ellisonleao/gruvbox.nvim" use 'rhlobo/vim-super-retab' |