1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

chore: apply nixvim updates

This commit is contained in:
oddlama 2024-03-11 20:41:28 +01:00
parent 1b0934b565
commit e9fbbb9c7d
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
7 changed files with 316 additions and 232 deletions

View file

@ -15,10 +15,26 @@
"t" = "open_tabnew";
"z" = "close_all_nodes";
"Z" = "expand_all_nodes";
"a".__raw = ''{ "add", config = { show_path = "relative" } }'';
"A".__raw = ''{ "add_directory", config = { show_path = "relative" } }'';
"c".__raw = ''{ "copy", config = { show_path = "relative" } }'';
"m".__raw = ''{ "move", config = { show_path = "relative" } }'';
"a".__raw =
/*
lua
*/
''{ "add", config = { show_path = "relative" } }'';
"A".__raw =
/*
lua
*/
''{ "add_directory", config = { show_path = "relative" } }'';
"c".__raw =
/*
lua
*/
''{ "copy", config = { show_path = "relative" } }'';
"m".__raw =
/*
lua
*/
''{ "move", config = { show_path = "relative" } }'';
};
};
defaultComponentConfigs = {