aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/opts.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/opts.lua')
-rw-r--r--.config/nvim/lua/opts.lua14
1 files changed, 2 insertions, 12 deletions
diff --git a/.config/nvim/lua/opts.lua b/.config/nvim/lua/opts.lua
index f0785d8..b9ac5f9 100644
--- a/.config/nvim/lua/opts.lua
+++ b/.config/nvim/lua/opts.lua
@@ -23,16 +23,6 @@ local opts = {
ttyfast = true,
}
--- customize split dividers
-vim.opt.fillchars = vim.opt.fillchars + {
- vert = "â–ˆ",
- fold = "â–ˆ",
- diff = "â–ˆ",
- stl = "=",
- stlnc = "=",
- stl = "="
-}
-
-- use a line cursor within insert mode and a block cursor everywhere else.
-- reference chart of values:
-- ps = 0 -> blinking block.
@@ -49,6 +39,6 @@ if vim.env.TERM == "alacritty" then
vim.opt.ttymouse = "sgr"
end
-for x, y in pairs(opts) do
- vim.opt[x] = y
+for k, v in pairs(opts) do
+ vim.opt[k] = v
end