renamed some files and directories that had identical filenames. Altered some nixvim plugin options. Set up gpg signing for git commits.

This commit is contained in:
pagedmov
2024-11-10 02:57:08 -05:00
committed by pagedmov
parent 2a1ba18c09
commit 366a0c1175
15 changed files with 41 additions and 4 deletions

View File

@@ -1,6 +1,21 @@
{
programs.nixvim = {
keymaps = [
{
action = "<cmd>ChatGPTEditWithInstructions<CR>";
key = "!egpt";
mode = "n";
}
{
action = "<cmd>ChatGPTCompleteCode<CR>";
key = "!cgpt";
mode = "n";
}
{
action = "<cmd>ChatGPT<CR>";
key = "!gpt";
mode = "n";
}
{
action = "<cmd>lua vim.lsp.buf.code_action()<CR>";
key = "!ca";