Доброго времени суток форумчанам.
Vim + Tmux юзаю такую связку, вопрос каким образом можно настроить единую цветовую тему? Тема редактора vim в tmux отображается корректно, а вот сам tmux перевести на цветовую тему dracula не смог.
vimrc:
tmux.conf
PS кто пользуется? Какие плагины юзаете? Какие хот-кеи? Скидывайте свои
Vim + Tmux юзаю такую связку, вопрос каким образом можно настроить единую цветовую тему? Тема редактора vim в tmux отображается корректно, а вот сам tmux перевести на цветовую тему dracula не смог.
vimrc:
Код:
set number
set expandtab
set tabstop=2
set shiftwidth=4
set backspace=2
set hlsearch
set incsearch
set autoindent
filetype plugin indent on
" Plugins will be downloaded under the specified directory.
call plug#begin('~/.vim/plugged')
" Declare the list of plugins.
Plug 'easymotion/vim-easymotion'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'ycm-core/YouCompleteMe'
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-fugitive'
Plug 'kien/ctrlp.vim'
Plug 'airblade/vim-gitgutter'
Plug 'mattn/emmet-vim'
"Plug 'tpope/vim-unimpaired'
"colorschemes
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'https://github.com/morhetz/gruvbox'
"GO lang
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
" List ends here. Plugins become visible to Vim after this call.
call plug#end()
"mapping
map <C-n> :NERDTreeToggle<CR>
map <Leader> <Plug>(easymotion-prefix)
syntax on
colorscheme dracula
set background=dark
let g:mapleader=','
let g:user_emmet_leader_key=','
tmux.conf
Код:
set -g default-terminal "tmux-256color"
set-option -g default-command bash
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
#coloscheme
set -g @plugin 'iamruinous/tmux-theme-dracula'
#control
set -g @plugin 'tmux-plugins/tmux-pain-control'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
PS кто пользуется? Какие плагины юзаете? Какие хот-кеи? Скидывайте свои