Added bufferline and removed ' from aw

This commit is contained in:
Barna Máté 2024-12-24 23:44:10 +01:00
parent 1514089913
commit 5768956e73
3 changed files with 15 additions and 9 deletions

View file

@ -15,13 +15,14 @@
{ {
pname = "shades_of_purple"; pname = "shades_of_purple";
version = "1.0.1"; # dummy version version = "1.0.1"; # dummy version
src = pkgs.fetchFromGitea { src = pkgs.fetchFromGitea
domain = "git.4o1x5.dev"; {
owner = "4o1x5"; domain = "git.4o1x5.dev";
repo = "shades-of-purple-nvim"; owner = "4o1x5";
rev = "c009b792d7e23e5fa988e8741997506cc53c52b1"; repo = "shades-of-purple-nvim";
hash = "sha256-LRXzVRWZV9Tk0hEsDmdr64dURLVW0XJzlolzDxjd40k="; rev = "c009b792d7e23e5fa988e8741997506cc53c52b1";
}; hash = "sha256-LRXzVRWZV9Tk0hEsDmdr64dURLVW0XJzlolzDxjd40k=";
};
}; };
} }

View file

@ -18,7 +18,7 @@
autoCmd = [ autoCmd = [
# Start aw-watcher-vim on startup # Start aw-watcher-vim on startup
{ {
command = ":AWStart'"; command = ":AWStart";
event = [ event = [
"VimEnter" "VimEnter"
]; ];

View file

@ -13,8 +13,9 @@
hide_numbers = false; hide_numbers = false;
autochdir = true; autochdir = true;
close_on_exit = true; close_on_exit = true;
direction = "horizontal"; direction = "tab";
open_mapping = "[[<c-t>]]"; open_mapping = "[[<c-t>]]";
shell = "zsh";
}; };
}; };
@ -182,4 +183,8 @@
"reason" "reason"
]; ];
}; };
plugins.bufferline = {
enable = true;
};
} }