diff --git a/.config/nvim/lua/config/options.lua b/.config/nvim/lua/config/options.lua --- a/.config/nvim/lua/config/options.lua +++ b/.config/nvim/lua/config/options.lua @@ -26,11 +26,11 @@ o.winminwidth = 5 -- Behavior o.autowriteall = true o.backup = true -o.completeopt = {"menu", "menuone", "noselect"} +o.completeopt = { "menu", "menuone", "noselect" } o.hidden = false o.ignorecase = true o.scrolloff = 15 -o.sessionoptions = {"buffers", "curdir", "localoptions"} +o.sessionoptions = { "buffers", "curdir", "localoptions" } o.sidescrolloff = 10 o.smartcase = true o.splitbelow = true @@ -40,10 +40,10 @@ o.wildignorecase = true -- Paths o.backupdir:remove(".") -o.tags:append({".tags", "./.tags;"}) +o.tags:append({ ".tags", "./.tags;" }) o.wildignore = "*~,*.o,*.pyc,.git/*,hg/*,.svn/*" if vim.fn.executable("ag") then o.grepprg = "ag --vimgrep" - o.grepformat = {"%f:%l:%c:%m", "%f"} + o.grepformat = { "%f:%l:%c:%m", "%f" } end