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";
version = "1.0.1"; # dummy version
src = pkgs.fetchFromGitea {
domain = "git.4o1x5.dev";
owner = "4o1x5";
repo = "shades-of-purple-nvim";
rev = "c009b792d7e23e5fa988e8741997506cc53c52b1";
hash = "sha256-LRXzVRWZV9Tk0hEsDmdr64dURLVW0XJzlolzDxjd40k=";
};
src = pkgs.fetchFromGitea
{
domain = "git.4o1x5.dev";
owner = "4o1x5";
repo = "shades-of-purple-nvim";
rev = "c009b792d7e23e5fa988e8741997506cc53c52b1";
hash = "sha256-LRXzVRWZV9Tk0hEsDmdr64dURLVW0XJzlolzDxjd40k=";
};
};
}

View file

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

View file

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