From 5b320bdf0535c770589e01bd1f86730b91d541fb Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 17 May 2024 13:31:38 +0300 Subject: [PATCH] neovim: enable listchars by default --- neovim/dev.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neovim/dev.nix b/neovim/dev.nix index 691a0b6..717ae98 100644 --- a/neovim/dev.nix +++ b/neovim/dev.nix @@ -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" ];