Compare commits
2 commits
fc593aaaf8
...
4b946f6528
Author | SHA1 | Date | |
---|---|---|---|
4b946f6528 | |||
5b320bdf05 |
2 changed files with 16 additions and 4 deletions
18
.gitignore
vendored
18
.gitignore
vendored
|
@ -1,4 +1,14 @@
|
||||||
.direnv/
|
# editors
|
||||||
|
.idea/
|
||||||
/wallpapers/*.jpg
|
.vscode/
|
||||||
|
*.swp
|
||||||
|
# env
|
||||||
|
.env*
|
||||||
|
!env.example
|
||||||
|
# direnv
|
||||||
|
.direnv
|
||||||
|
.envrc
|
||||||
|
# nix
|
||||||
|
/result
|
||||||
|
# custom
|
||||||
|
/wallpapers/*.jpg
|
|
@ -25,6 +25,8 @@ in
|
||||||
"${modulesPath}/profiles/recommended.nix"
|
"${modulesPath}/profiles/recommended.nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
vim.opt.list = true;
|
||||||
|
|
||||||
# Enable fast navigation between windows
|
# Enable fast navigation between windows
|
||||||
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];
|
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue