diff --git a/config/options.nix b/config/options.nix index 99471d8..a8d74d6 100644 --- a/config/options.nix +++ b/config/options.nix @@ -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="; + }; }; } diff --git a/config/plugins/aw/default.nix b/config/plugins/aw/default.nix index 0acbebd..234383d 100644 --- a/config/plugins/aw/default.nix +++ b/config/plugins/aw/default.nix @@ -18,7 +18,7 @@ autoCmd = [ # Start aw-watcher-vim on startup { - command = ":AWStart'"; + command = ":AWStart"; event = [ "VimEnter" ]; diff --git a/config/plugins/ui/default.nix b/config/plugins/ui/default.nix index d14776e..a90a553 100644 --- a/config/plugins/ui/default.nix +++ b/config/plugins/ui/default.nix @@ -13,8 +13,9 @@ hide_numbers = false; autochdir = true; close_on_exit = true; - direction = "horizontal"; + direction = "tab"; open_mapping = "[[]]"; + shell = "zsh"; }; }; @@ -182,4 +183,8 @@ "reason" ]; }; + + plugins.bufferline = { + enable = true; + }; }