nixvimConfigs/fiesta: update base config

This commit is contained in:
Gabriel Arazas 2024-02-03 21:32:36 +08:00
parent e796aae01f
commit b89eadc791
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -25,6 +25,9 @@
options = {
encoding = "utf-8";
completeopt = [ "menuone" "noselect" ];
expandtab = true;
shiftwidth = 4;
tabstop = 4;
};
keymaps = [
@ -33,11 +36,15 @@
key = "jk";
action = "<Esc>";
}
{
mode = "n";
key = "<leader>bd";
action = "vim.cmd.bdelete";
lua = true;
}
];
plugins.nvim-autopairs.enable = true;
extraPlugins = with pkgs; [
decker
];
};
}