chore: cleanup theming and get nvim colors working in tmux
This commit is contained in:
parent
655bdebfc5
commit
db123caede
7 changed files with 8 additions and 21 deletions
|
@ -1,7 +1,6 @@
|
|||
{ inputs, ... }: {
|
||||
imports = [
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
#./nixvim/colorscheme-catppuccin.nix
|
||||
./nixvim/nvim-tree.nix # filetree
|
||||
./nixvim/noice.nix # custom CMDLINE
|
||||
./nixvim/lualine.nix # custom statusline
|
||||
|
@ -12,16 +11,14 @@
|
|||
viAlias = true;
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
extraConfigLua = "";
|
||||
extraPlugins = [];
|
||||
|
||||
opts = {
|
||||
shiftwidth = 2;
|
||||
number = true;
|
||||
relativenumber = true;
|
||||
termguicolors = true;
|
||||
};
|
||||
|
||||
clipboard.providers.wl-copy.enable = true;
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
programs.nixvim.colorschemes.catppuccin = {
|
||||
enable = true;
|
||||
settings = {
|
||||
flavour = "mocha";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -21,7 +21,8 @@
|
|||
];
|
||||
extraConfig = ''
|
||||
set -g default-terminal "tmux-256color"
|
||||
set -ag terminal-overrides ",xterm-256color:RGB"
|
||||
set -ag terminal-overrides ",tmux-256color:RGB"
|
||||
set -as terminal-features ",tmux-256color:RGB"
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue