Update
This commit is contained in:
parent
bdf869a2e3
commit
845068b51c
3 changed files with 15 additions and 14 deletions
|
@ -30,17 +30,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
plugins = {
|
plugins = {
|
||||||
# Testing
|
|
||||||
noice = {
|
|
||||||
enable = true;
|
|
||||||
popupmenu.enabled = true;
|
|
||||||
};
|
|
||||||
notify = {
|
|
||||||
enable = true;
|
|
||||||
topDown = true;
|
|
||||||
fps = 60;
|
|
||||||
stages = "slide";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Git related
|
# Git related
|
||||||
# Gutter information for git modifications
|
# Gutter information for git modifications
|
||||||
|
@ -53,6 +42,17 @@
|
||||||
rainbow-delimiters.enable = true;
|
rainbow-delimiters.enable = true;
|
||||||
# Colorize hex colors inline
|
# Colorize hex colors inline
|
||||||
nvim-colorizer.enable = true;
|
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 related
|
||||||
# Nix language syntax highlighting / file type associations
|
# Nix language syntax highlighting / file type associations
|
||||||
|
@ -265,7 +265,6 @@
|
||||||
everforest
|
everforest
|
||||||
onedark-nvim
|
onedark-nvim
|
||||||
rose-pine
|
rose-pine
|
||||||
melange-nvim
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
keyMode = "vi";
|
keyMode = "vi";
|
||||||
mouse = true;
|
mouse = true;
|
||||||
terminal = "xterm-256color";
|
# terminal = "xterm-256color";
|
||||||
plugins = with pkgs.tmuxPlugins; [
|
plugins = with pkgs.tmuxPlugins; [
|
||||||
{
|
{
|
||||||
plugin = power-theme;
|
plugin = power-theme;
|
||||||
|
@ -15,6 +15,8 @@
|
||||||
set -g @tmux_power_show_upload_speed false
|
set -g @tmux_power_show_upload_speed false
|
||||||
set -g @tmux_power_show_download_speed false
|
set -g @tmux_power_show_download_speed false
|
||||||
set -g @tmux_power_show_web_reachable false
|
set -g @tmux_power_show_web_reachable false
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
set-option -sa terminal-overrides ",xterm-256color:RGB"
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, ... }: {
|
{ lib, ... }: {
|
||||||
programs.nixvim.colorscheme = lib.mkForce "tokyonight-night";
|
programs.nixvim.colorscheme = lib.mkForce "ayu-mirage";
|
||||||
stylix.targets.nixvim.enable = false;
|
stylix.targets.nixvim.enable = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue