feat(neovim): add shortcut for sidekick CLI toggle

fix(ryu): update filesystem type to ntfs3
This commit is contained in:
uttarayan21
2025-11-12 16:47:27 +05:30
parent 4edb4e5535
commit 1a42c54678
2 changed files with 7 additions and 1 deletions

View File

@@ -103,6 +103,7 @@ in {
"<C-q>x" = "[[<cmd>tabclose<cr>]]"; "<C-q>x" = "[[<cmd>tabclose<cr>]]";
"<C-q>n" = "[[<cmd>tabnext<cr>]]"; "<C-q>n" = "[[<cmd>tabnext<cr>]]";
"<C-q>p" = "[[<cmd>tabprevious<cr>]]"; "<C-q>p" = "[[<cmd>tabprevious<cr>]]";
"<c-.>" = "require('sidekick.cli').toggle";
}; };
terminal = { terminal = {
"<C-\\>" = "require('FTerm').toggle"; "<C-\\>" = "require('FTerm').toggle";
@@ -176,6 +177,11 @@ in {
sidekick = { sidekick = {
enable = true; enable = true;
settings = {
nes = {
enabled = false;
};
};
}; };
conform-nvim = { conform-nvim = {

View File

@@ -138,7 +138,7 @@
fileSystems."/volumes/windows-games" = { fileSystems."/volumes/windows-games" = {
device = "/dev/disk/by-partuuid/56359fb7-7d33-44d2-bebd-b0c53daeeb73"; device = "/dev/disk/by-partuuid/56359fb7-7d33-44d2-bebd-b0c53daeeb73";
fsType = "ntfs"; fsType = "ntfs3";
options = ["nofail"]; options = ["nofail"];
}; };