Skip to content

Commit 1a42c54

Browse files
committed
feat(neovim): add shortcut for sidekick CLI toggle
fix(ryu): update filesystem type to ntfs3
1 parent 4edb4e5 commit 1a42c54

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

neovim/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ in {
103103
"<C-q>x" = "[[<cmd>tabclose<cr>]]";
104104
"<C-q>n" = "[[<cmd>tabnext<cr>]]";
105105
"<C-q>p" = "[[<cmd>tabprevious<cr>]]";
106+
"<c-.>" = "require('sidekick.cli').toggle";
106107
};
107108
terminal = {
108109
"<C-\\>" = "require('FTerm').toggle";
@@ -176,6 +177,11 @@ in {
176177

177178
sidekick = {
178179
enable = true;
180+
settings = {
181+
nes = {
182+
enabled = false;
183+
};
184+
};
179185
};
180186

181187
conform-nvim = {

nixos/ryu/ryu.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138

139139
fileSystems."/volumes/windows-games" = {
140140
device = "/dev/disk/by-partuuid/56359fb7-7d33-44d2-bebd-b0c53daeeb73";
141-
fsType = "ntfs";
141+
fsType = "ntfs3";
142142
options = ["nofail"];
143143
};
144144

0 commit comments

Comments
 (0)