mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-06 02:47:49 +02:00
Allow setting ignorecase and smartcase from lvi-config.lua (#545)
This commit is contained in:
parent
f312d3c88b
commit
096cc56051
3 changed files with 6 additions and 1 deletions
|
@ -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 = {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue