Compare commits

..

2 Commits

Author SHA1 Message Date
dc8221f6ca Move tabs when in terminal 2025-08-22 22:05:20 -04:00
1994f0681c Add find_files shortcut 2025-08-22 22:04:03 -04:00

View File

@@ -41,6 +41,17 @@
" "
""
];
shortcut = [
{
action = {
__raw = "function(path) vim.cmd('Telescope find_files') end";
};
desc = "Find Files";
key = "f";
icon = " ";
}
];
};
};
};
@@ -217,6 +228,15 @@
action = "<Cmd>tabp<CR>";
key = "<C-[>";
}
{
action = "<C-\\><C-n><Cmd>tabn<CR>";
key = "<C-]>";
mode = [ "t" ];
}
{
action = "<C-\\><C-n><Cmd>tabp<CR>";
key = "<C-[>";
}
{
action = "<Cmd>lua require(\"typst-preview\").start()<CR>";
key = "<C-m>s";