feat: switch neovim & alacritty theme

This commit is contained in:
Felix Schröter 2021-03-26 03:32:40 +01:00
parent c0eec00cb3
commit 5a84c27334
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
5 changed files with 32 additions and 33 deletions

View file

@ -44,7 +44,7 @@ in {
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
plugins = with pkgs.vimPlugins; [ plugins = with pkgs.vimPlugins; [
gruvbox-community nvcode-color-schemes-vim
editorconfig-vim editorconfig-vim
direnv-vim direnv-vim
fzf-vim fzf-vim

View file

@ -6,8 +6,10 @@ set smartcase
set termguicolors set termguicolors
set timeoutlen=500 set timeoutlen=500
colorscheme gruvbox let g:nvcode_termcolors=256
let g:gruvbox_number_column = 'bg1' syntax on
colorscheme nvcode
hi TSCurrentScope guifg=NONE ctermfg=NONE guibg=#252526 ctermbg=235 gui=NONE cterm=NONE
function! s:gitModified() function! s:gitModified()
let files = systemlist('git ls-files -m 2>/dev/null') let files = systemlist('git ls-files -m 2>/dev/null')

View file

@ -1,29 +0,0 @@
colors:
# Default colors
primary:
# hard contrast: background = '#1d2021'
background: '#282828'
# soft contrast: background = '#32302f'
foreground: '#ebdbb2'
# Normal colors
normal:
black: '#282828'
red: '#cc241d'
green: '#98971a'
yellow: '#d79921'
blue: '#458588'
magenta: '#b16286'
cyan: '#689d6a'
white: '#a89984'
# Bright colors
bright:
black: '#928374'
red: '#fb4934'
green: '#b8bb26'
yellow: '#fabd2f'
blue: '#83a598'
magenta: '#d3869b'
cyan: '#8ec07c'
white: '#ebdbb2'

View file

@ -0,0 +1,26 @@
colors:
# Default colors
primary:
background: '#1e1e1e' #Background from Dark Theme
# Normal colors
normal:
black: '#000000'
red: '#cd3131'
green: '#0dbc79'
yellow: '#e5e510'
blue: '#2472c8'
magenta: '#bc3fbc'
cyan: '#11a8cd'
white: '#e5e5e5'
# Bright colors
bright:
black: '#666666'
red: '#f14c4c'
green: '#23d18b'
yellow: '#f5f543'
blue: '#3b8eea'
magenta: '#d670d6'
cyan: '#29b8db'
white: '#e5e5e5'

View file

@ -27,6 +27,6 @@ in {
mods = "Control"; mods = "Control";
action = "ReceiveChar"; action = "ReceiveChar";
}) [ "Key0" "Equals" "NumpadAdd" "NumpadSubtract" "Minus" ]; }) [ "Key0" "Equals" "NumpadAdd" "NumpadSubtract" "Minus" ];
} (trivial.importJSON (yamlToJSON ./alacritty-gruvbox-dark.yml)); } (trivial.importJSON (yamlToJSON ./alacritty-vscode.yml));
}; };
} }