diff options
author | mhsn <mail@mhsn.net> | 2025-02-13 11:41:20 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-02-13 11:41:20 +0000 |
commit | c49e85bf8d0a2aefe66e6b907de6b73a335069e8 (patch) | |
tree | 65c59546523f2f9f30a57aa3c6ab509580d632bc | |
parent | 8c05b2b4530a8542cf388e0d93a1550d32458b78 (diff) | |
download | nvim-c49e85bf8d0a2aefe66e6b907de6b73a335069e8.tar.gz nvim-c49e85bf8d0a2aefe66e6b907de6b73a335069e8.zip |
vim opt add list=true
-rw-r--r-- | lua/config/opt.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/config/opt.lua b/lua/config/opt.lua index 37b785c..800c6d8 100644 --- a/lua/config/opt.lua +++ b/lua/config/opt.lua @@ -25,3 +25,6 @@ vim.opt.scrolloff = 9 -- 80 char col vim.opt.colorcolumn = "80" + +-- show whitespace +vim.opt.list = true |