Rename modules directory
All checks were successful
/ check (push) Successful in 55s

This commit is contained in:
Oliver Davies 2025-08-18 12:00:00 +01:00
parent a0575bdb2a
commit 703bf836de
210 changed files with 1 additions and 1 deletions

View file

@ -1,86 +0,0 @@
{
flake.modules.nixvim.custom.keymaps = [
{
action = "<Esc>A,<Esc>";
key = ",,";
mode = "i";
}
{
action = "<Esc>A;<Esc>";
key = ";;";
mode = "i";
}
{
action = "<cmd>!drush cache-rebuild<CR>";
key = "<leader>dcr";
}
{
action = "<cmd>:edit todo.txt<CR>";
key = "<leader>et";
}
{
action = "<cmd>lua vim.lsp.buf.format()<CR>";
key = "<leader>f";
options.silent = true;
}
{
action = "\"+y";
key = "<leader>y";
mode = [
"n"
"x"
];
}
{
action = "@q";
key = "Q";
}
{
action = "<cmd>silent !tmux new-window tmux-sessionizer<CR>";
key = "<C-f>";
options.silent = true;
}
{
action = "<Esc>:w<CR>";
key = "<C-s>";
mode = [
"i"
"n"
];
}
{
action = "<cmd>tabnew<CR>";
key = "<C-t>";
}
{
action = "<cmd>!composer install<CR>";
key = "<leader>ci";
}
{
action = "<cmd>edit composer.json<CR>";
key = "<leader>ec";
}
{
action = "<cmd>edit flake.nix<CR>";
key = "<leader>ef";
}
{
action = "<Esc>";
key = "jk";
mode = "i";
}
];
}