From a7adea406be7f750f717cbca9e03333840215be7 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Fri, 16 Oct 2020 23:39:46 +0200 Subject: [PATCH] Let's try Nord. --- conf/tmux.conf | 20 ++++++++++---------- vim/init.vim | 7 ++++--- zsh/zshrc | 2 +- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/conf/tmux.conf b/conf/tmux.conf index 7ecc32d..2cfb1b0 100644 --- a/conf/tmux.conf +++ b/conf/tmux.conf @@ -22,20 +22,20 @@ bind - split-window -v # status line set -g status "on" set -g status-position top -set -g status-style "none,bg=colour238" +set -g status-style "none,bg=brightblack" set -g status-justify "left" set -g status-left-style "none" set -g status-right-style "none" set -g status-left-length "100" set -g status-right-length "100" -set -g pane-border-style "fg=colour240" -set -g pane-active-border-style "fg=colour117" -set -g message-style "fg=colour252,bg=colour240" -set -g message-command-style "fg=colour252,bg=colour240" -set -g status-left "#[fg=colour238,bg=colour117] #S #[fg=colour117,bg=colour238,nobold,nounderscore,noitalics]" -set -g status-right "#[fg=colour240,bg=colour238,nobold,nounderscore,noitalics]#[fg=colour247,bg=colour240]#[fg=colour244,bg=colour240,nobold,nounderscore,noitalics]#[fg=colour238,bg=colour244] #h " -setw -g window-status-style "none,fg=colour248,bg=colour238" +set -g pane-border-style "fg=black" +set -g pane-active-border-style "fg=cyan" +set -g message-style "fg=brightcyan,bg=black" +set -g message-command-style "fg=brightcyan,bg=black" +set -g status-left "#[fg=cyan,bg=brightblack] #S " +set -g status-right "#[fg=cyan,bg=brightblack,nobold,nounderscore,noitalics] #h " +setw -g window-status-style "none,fg=cyan,bg=brightblack" setw -g window-status-separator "" setw -g window-status-activity-style "none" -setw -g window-status-format "#[fg=colour248,bg=colour238] #I #[fg=colour248,bg=colour238] #W " -setw -g window-status-current-format "#[fg=colour238,bg=colour240,nobold,nounderscore,noitalics]#[fg=colour252,bg=colour240] #I #[fg=colour252,bg=colour240] #W #[fg=colour240,bg=colour238,nobold,nounderscore,noitalics]" +setw -g window-status-format "#[fg=cyan,bg=brightblack] #I #W " +setw -g window-status-current-format "#[fg=cyan,bg=black] #I#[fg=cyan,bg=black] #W " diff --git a/vim/init.vim b/vim/init.vim index 8150b24..899a931 100644 --- a/vim/init.vim +++ b/vim/init.vim @@ -1,5 +1,6 @@ call plug#begin('~/.config/vim-plugins') Plug 'ashfinal/vim-colors-paper' +Plug 'arcticicestudio/nord-vim' Plug 'junegunn/fzf' Plug 'junegunn/fzf.vim' Plug 'mhinz/vim-signify' @@ -59,7 +60,7 @@ map f :Goyo map t :NERDTreeToggle set bg=dark -colorscheme paper +colorscheme nord set t_ZH= set t_ZR= hi Comment cterm=italic gui=italic @@ -68,14 +69,14 @@ hi BadWhitespace ctermbg=lightblue guibg=lightblue autocmd! User GoyoEnter Limelight autocmd! User GoyoLeave Limelight! command! -bang -nargs=? -complete=dir Files - \ call fzf#vim#files(, {'options': ['-e', '--layout=reverse', '--preview', 'bat --color always --style=plain --theme="Monokai Extended" {}']}, 0) + \ call fzf#vim#files(, {'options': ['-e', '--layout=reverse', '--preview', 'bat --color always --style=plain --theme="Nord" {}']}, 0) command! -bang -nargs=? -complete=dir Colors \ call fzf#vim#colors({'options': ['-e', '--layout=reverse', '--preview', '']}, 0) let g:rainbow_active = 1 let g:terraform_fmt_on_save=1 let g:lightline = { - \ 'colorscheme': 'powerlineish', + \ 'colorscheme': 'nord', \ 'active': { \ 'left': [ [ 'mode', 'paste' ], \ [ 'readonly', 'filename' ] ], diff --git a/zsh/zshrc b/zsh/zshrc index 4fccb5d..bc821fd 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -11,7 +11,7 @@ setopt share_history [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh export FZF_DEFAULT_COMMAND='fd -H' export FZF_CTRL_T_COMMAND='fd -H' -export FZF_DEFAULT_OPTS="-e --multi --layout=reverse --preview='bat --color=always --tabs=2 --style=plain --theme=Monokai\ Extended {}'" +export FZF_DEFAULT_OPTS="-e --multi --layout=reverse --preview='bat --color=always --tabs=2 --style=plain --theme=Nord {}'" export FZF_CTRL_R_OPTS="-e --layout=reverse --preview=''" _fzf_compgen_path() { fd -H . "$1"