Fix
This commit is contained in:
1
home/nvim/comment.nix
Normal file
1
home/nvim/comment.nix
Normal file
@@ -0,0 +1 @@
|
||||
{ programs.nixvim.plugins.comment = { enable = true; }; }
|
||||
@@ -19,6 +19,9 @@
|
||||
./whichkey.nix
|
||||
./alpha.nix
|
||||
./keymaps.nix
|
||||
./comment.nix
|
||||
./oil.nix
|
||||
./trouble.nix
|
||||
];
|
||||
|
||||
programs.nixvim = {
|
||||
|
||||
@@ -34,6 +34,33 @@
|
||||
action = "<cmd>ObsidianPasteImg<cr>";
|
||||
}
|
||||
|
||||
{
|
||||
key = "<leader>E";
|
||||
action = "<cmd>Oil<cr>";
|
||||
}
|
||||
|
||||
{
|
||||
key = "<leader>t";
|
||||
action = "<cmd>TroubleToggle<cr>";
|
||||
}
|
||||
|
||||
{
|
||||
key = "<C-h>";
|
||||
action = "<C-w>h";
|
||||
}
|
||||
{
|
||||
key = "<C-j>";
|
||||
action = "<C-w>j";
|
||||
}
|
||||
{
|
||||
key = "<C-k>";
|
||||
action = "<C-w>k";
|
||||
}
|
||||
{
|
||||
key = "<C-l>";
|
||||
action = "<C-w>l";
|
||||
}
|
||||
|
||||
# Terminal Mappings
|
||||
{
|
||||
mode = "t";
|
||||
|
||||
1
home/nvim/oil.nix
Normal file
1
home/nvim/oil.nix
Normal file
@@ -0,0 +1 @@
|
||||
{ programs.nixvim.plugins.oil = { enable = true; }; }
|
||||
1
home/nvim/trouble.nix
Normal file
1
home/nvim/trouble.nix
Normal file
@@ -0,0 +1 @@
|
||||
{ programs.nixvim.plugins.trouble = { enable = true; }; }
|
||||
Reference in New Issue
Block a user