Compare commits

...

2 Commits

Author SHA1 Message Date
ee2a2eb429 Add formating keybinding. 2024-03-16 18:17:16 +01:00
01aca56c1d Fix spelling. 2024-03-16 18:16:48 +01:00
2 changed files with 13 additions and 6 deletions

View File

@ -7,11 +7,18 @@
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
keymaps = [{ keymaps = [
{
action = "<cmd>Oil<cr>"; action = "<cmd>Oil<cr>";
key = "<leader>e"; key = "<leader>e";
options = { silent = true; }; options = { silent = true; };
}]; }
{
action = "<cmd>lua require('conform').format({ bufnr = buf })<cr>";
key = "<leader>f";
options = { silent = true; };
}
];
options = { options = {
hlsearch = false; hlsearch = false;

View File

@ -3,7 +3,7 @@
# But we all know I love zsh # But we all know I love zsh
programs.zsh = { programs.zsh = {
enable = true; enable = true;
autosuggestions.enable = true; autosuggestion.enable = true;
enableCompletion = true; enableCompletion = true;
history.path = "${config.xdg.dataHome}/zsh/history"; history.path = "${config.xdg.dataHome}/zsh/history";
dotDir = ".config/zsh"; dotDir = ".config/zsh";