aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'home/.config/nvim')
-rw-r--r--home/.config/nvim/lua/cfg/options.lua34
1 files changed, 17 insertions, 17 deletions
diff --git a/home/.config/nvim/lua/cfg/options.lua b/home/.config/nvim/lua/cfg/options.lua
index d6881fc..cce808a 100644
--- a/home/.config/nvim/lua/cfg/options.lua
+++ b/home/.config/nvim/lua/cfg/options.lua
@@ -50,11 +50,11 @@ opt.wildmode = { "longest", "full" }
opt.cpoptions:remove({ "_" })
opt.listchars = {
- tab = "> ",
- trail = "·",
- extends = ">",
- precedes = "<",
- nbsp = "+",
+ tab = "> ",
+ trail = "·",
+ extends = ">",
+ precedes = "<",
+ nbsp = "+",
}
opt.list = true
@@ -87,11 +87,11 @@ vim.g.loaded_matchparen = 1
vim.g.loaded_spec = 1
opt.diffopt:append({
- ["indent-heuristic"] = true,
- hiddenoff = true,
- iblank = true,
- iwhiteall = true,
- algorithm = "histogram",
+ ["indent-heuristic"] = true,
+ hiddenoff = true,
+ iblank = true,
+ iwhiteall = true,
+ algorithm = "histogram",
})
if vim.fn.executable("rg") then
@@ -111,11 +111,11 @@ vim.g.mapleader = " "
vim.g.maplocalleader = ","
vim.diagnostic.config({
- virtual_text = {
- source = "if_many",
- severity = vim.diagnostic.severity.ERROR,
- },
- signs = true,
- underline = true,
- update_in_insert = false,
+ virtual_text = {
+ source = "if_many",
+ severity = vim.diagnostic.severity.ERROR,
+ },
+ signs = true,
+ underline = true,
+ update_in_insert = false,
})