override more defaults
This commit is contained in:
parent
b6f59a300d
commit
27be81d914
1 changed files with 18 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./vim/default.nix
|
||||
];
|
||||
|
@ -20,6 +21,7 @@
|
|||
};
|
||||
|
||||
autocmds = [
|
||||
#Autocommand to fall back to treesitter folding if LSP doesnt support it
|
||||
{
|
||||
event = [ "LspAttach" ];
|
||||
callback = pkgs.lib.generators.mkLuaInline ''
|
||||
|
@ -33,6 +35,20 @@
|
|||
'';
|
||||
}
|
||||
];
|
||||
|
||||
tabline = {
|
||||
nvimBufferline.enable = true;
|
||||
};
|
||||
|
||||
binds = {
|
||||
hardtime-nvim = {
|
||||
enable = true;
|
||||
setupOpts = {
|
||||
restriction_mode = "block";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
theme = {
|
||||
name = "catppuccin";
|
||||
style = "mocha";
|
||||
|
|
Loading…
Reference in a new issue