override more defaults

This commit is contained in:
Natalie 2025-05-21 15:35:29 -07:00
parent b6f59a300d
commit 27be81d914
No known key found for this signature in database
GPG key ID: 61F4EAEB0C9C3D5F

View file

@ -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";