aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/opts.lua20
1 files changed, 10 insertions, 10 deletions
diff --git a/.config/nvim/lua/opts.lua b/.config/nvim/lua/opts.lua
index 547b697..71db11d 100644
--- a/.config/nvim/lua/opts.lua
+++ b/.config/nvim/lua/opts.lua
@@ -22,7 +22,7 @@ local opts = {
ttyfast = true,
}
--- Customize split dividers
+-- customize split dividers
vim.opt.fillchars = vim.opt.fillchars + {
vert = "â–ˆ",
fold = "â–ˆ",
@@ -32,15 +32,15 @@ vim.opt.fillchars = vim.opt.fillchars + {
stl = "="
}
--- Use a line cursor within insert mode and a block cursor everywhere else.
--- Reference chart of values:
--- Ps = 0 -> blinking block.
--- Ps = 1 -> blinking block (default).
--- Ps = 2 -> steady block.
--- Ps = 3 -> blinking underline.
--- Ps = 4 -> steady underline.
--- Ps = 5 -> blinking bar (xterm).
--- Ps = 6 -> steady bar (xterm).
+-- use a line cursor within insert mode and a block cursor everywhere else.
+-- reference chart of values:
+-- ps = 0 -> blinking block.
+-- ps = 1 -> blinking block (default).
+-- ps = 2 -> steady block.
+-- ps = 3 -> blinking underline.
+-- ps = 4 -> steady underline.
+-- ps = 5 -> blinking bar (xterm).
+-- ps = 6 -> steady bar (xterm).
vim.g.t_SI = "\27[6 q"
vim.g.t_EI = "\27[2 q"