aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/lua/opts.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/lua/opts.lua b/.config/nvim/lua/opts.lua
index 4cfc22e..3f7dc11 100644
--- a/.config/nvim/lua/opts.lua
+++ b/.config/nvim/lua/opts.lua
@@ -7,8 +7,8 @@ local opts = {
expandtab = true,
hlsearch = true,
ignorecase = true,
- listchars = { tab = ">-", trail = "~", extends = ">", precedes = "<", space = "." },
linebreak = true,
+ listchars = { tab = ">-", trail = "~", extends = ">", precedes = "<", space = "." },
mouse = "a",
number = true,
relativenumber = true,
@@ -23,6 +23,7 @@ local opts = {
ttimeout = true,
ttimeoutlen = 1,
ttyfast = true,
+ undofile = true,
}
-- use a line cursor within insert mode and a block cursor everywhere else.