neovim: enable listchars by default

This commit is contained in:
Dmitriy Pleshevskiy 2024-05-17 13:31:38 +03:00
parent fc593aaaf8
commit 5b320bdf05
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -25,6 +25,8 @@ in
"${modulesPath}/profiles/recommended.nix"
];
vim.opt.list = true;
# Enable fast navigation between windows
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];