diff options
-rw-r--r-- | lua/default-config.lua | 2 | ||||
-rw-r--r-- | lua/settings.lua | 3 | ||||
-rw-r--r-- | lv-config.lua | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua index 92d19fdf..a2ac9fbf 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -15,6 +15,8 @@ O = { timeoutlen = 100, nvim_tree_disable_netrw = 0, extras = false, + ignore_case = true, + smart_case = true, -- @usage pass a table with your desired languages treesitter = { diff --git a/lua/settings.lua b/lua/settings.lua index 4e47a0ca..85682cb2 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -46,4 +46,5 @@ vim.cmd('filetype plugin on') -- filetype detection vim.o.guifont = "FiraCode Nerd Font:h17" -- vim.o.guifont = "JetBrains\\ Mono\\ Regular\\ Nerd\\ Font\\ Complete" - +vim.o.ignorecase = O.ignore_case +vim.o.smartcase = O.smart_case diff --git a/lv-config.lua b/lv-config.lua index 17b05b30..8b233158 100644 --- a/lv-config.lua +++ b/lv-config.lua @@ -15,6 +15,8 @@ O.timeoutlen = 100 O.document_highlight = true O.extras = false O.leader_key = ' ' +O.ignore_case = true +O.smart_case = true -- After changing plugin config it is recommended to run :PackerCompile O.plugin.hop.active = false |