diff options
Diffstat (limited to 'nix/programs')
| -rw-r--r-- | nix/programs/kitty.nix | 4 | ||||
| -rw-r--r-- | nix/programs/nvim.nix | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/nix/programs/kitty.nix b/nix/programs/kitty.nix index 0ab75c6..e3238eb 100644 --- a/nix/programs/kitty.nix +++ b/nix/programs/kitty.nix @@ -32,8 +32,8 @@ in { modify_font baseline ${toString s.font.baseline} cursor #${s.scheme.foreground} cursor_shape block - cursor_blink_interval -1 linear ease-out - cursor_stop_blinking_after 20.0 + #cursor_blink_interval -1 linear ease-out + #cursor_stop_blinking_after 20.0 cursor_trail 35 cursor_trail_decay 0.1 0.5 cursor_trail_start_threshold 2 diff --git a/nix/programs/nvim.nix b/nix/programs/nvim.nix index 78b1b6b..fcffe02 100644 --- a/nix/programs/nvim.nix +++ b/nix/programs/nvim.nix @@ -237,6 +237,17 @@ in { neogit plenary-nvim diffview-nvim + (pkgs.vimUtils.buildVimPlugin { + pname = "perfanno.nvim"; + version = "git-8640d66"; + src = pkgs.fetchFromGitHub { + owner = "t-troebst"; + repo = "perfanno.nvim"; + rev = "8640d6655f17a79af8de3153af2ce90c03f65e86"; + hash = "sha256-AfmmeLeUwYY9c3ISwt6/EHwCE4uhzKCvVoFwze7VJ4E="; + }; + meta.homepage = "https://github.com/t-troebst/perfanno.nvim/"; + }) ]; }; }; |