enable git-blame.nvim
This commit is contained in:
parent
6210d00d14
commit
137ee0b9d2
1 changed files with 5 additions and 5 deletions
|
@ -12,11 +12,15 @@
|
||||||
colorscheme = "dracula";
|
colorscheme = "dracula";
|
||||||
extraPlugins = with pkgs.vimPlugins; [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
dracula-vim
|
dracula-vim
|
||||||
|
git-blame-nvim
|
||||||
];
|
];
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
fd
|
fd
|
||||||
ripgrep
|
ripgrep
|
||||||
];
|
];
|
||||||
|
globals = {
|
||||||
|
gitblame_date_format = "%r";
|
||||||
|
};
|
||||||
options = {
|
options = {
|
||||||
autowrite = true;
|
autowrite = true;
|
||||||
background = "dark";
|
background = "dark";
|
||||||
|
@ -92,11 +96,7 @@
|
||||||
cmp-nvim-lsp-signature-help.enable = true;
|
cmp-nvim-lsp-signature-help.enable = true;
|
||||||
cmp-treesitter.enable = true;
|
cmp-treesitter.enable = true;
|
||||||
cmp_luasnip.enable = true;
|
cmp_luasnip.enable = true;
|
||||||
gitsigns = {
|
gitsigns.enable = true;
|
||||||
enable = true;
|
|
||||||
currentLineBlame = true;
|
|
||||||
currentLineBlameOpts.delay = 100;
|
|
||||||
};
|
|
||||||
indent-blankline = {
|
indent-blankline = {
|
||||||
enable = true;
|
enable = true;
|
||||||
showEndOfLine = true;
|
showEndOfLine = true;
|
||||||
|
|
Loading…
Reference in a new issue