This commit is contained in:
albert 2024-04-02 21:09:00 +09:00
parent bdf869a2e3
commit 845068b51c
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
3 changed files with 15 additions and 14 deletions

View file

@ -30,17 +30,6 @@
};
plugins = {
# Testing
noice = {
enable = true;
popupmenu.enabled = true;
};
notify = {
enable = true;
topDown = true;
fps = 60;
stages = "slide";
};
# Git related
# Gutter information for git modifications
@ -53,6 +42,17 @@
rainbow-delimiters.enable = true;
# Colorize hex colors inline
nvim-colorizer.enable = true;
# Fancy popups, etc for vim
noice = {
enable = true;
popupmenu.enabled = true;
};
notify = {
enable = true;
topDown = true;
fps = 60;
stages = "slide";
};
# Nix related
# Nix language syntax highlighting / file type associations
@ -265,7 +265,6 @@
everforest
onedark-nvim
rose-pine
melange-nvim
];
};
}

View file

@ -3,7 +3,7 @@
enable = true;
keyMode = "vi";
mouse = true;
terminal = "xterm-256color";
# terminal = "xterm-256color";
plugins = with pkgs.tmuxPlugins; [
{
plugin = power-theme;
@ -15,6 +15,8 @@
set -g @tmux_power_show_upload_speed false
set -g @tmux_power_show_download_speed false
set -g @tmux_power_show_web_reachable false
set -g default-terminal "screen-256color"
set-option -sa terminal-overrides ",xterm-256color:RGB"
'';
}
{

View file

@ -1,4 +1,4 @@
{ lib, ... }: {
programs.nixvim.colorscheme = lib.mkForce "tokyonight-night";
programs.nixvim.colorscheme = lib.mkForce "ayu-mirage";
stylix.targets.nixvim.enable = false;
}