neovim terminal colors
parent
65af79f8c3
commit
416c3c69dc
@ -1,22 +1,23 @@
|
|||||||
set nocompatible
|
set runtimepath^=~/.vim runtimepath+=~/.vim/after
|
||||||
|
let &packpath = &runtimepath
|
||||||
|
source ~/.vimrc
|
||||||
|
|
||||||
map <F12> :source $MYVIMRC<CR>
|
" no line numbers in terminal windows please
|
||||||
|
au TermOpen * setlocal nonumber
|
||||||
|
|
||||||
" Plugins -------------------------------------------------------------------{{{
|
let g:terminal_color_0 = '#929292'
|
||||||
" set the runtime path to include Vundle and initialize
|
let g:terminal_color_1 = '#e27373'
|
||||||
if has('win32')
|
let g:terminal_color_2 = '#94b979'
|
||||||
set rtp+=~/AppData/Local/nvim/bundle/Vundle.vim
|
let g:terminal_color_3 = '#ffba7b'
|
||||||
else
|
let g:terminal_color_4 = '#97bedc'
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
let g:terminal_color_5 = '#e1c0fa'
|
||||||
endif
|
let g:terminal_color_6 = '#00988e'
|
||||||
|
let g:terminal_color_7 = '#dedede'
|
||||||
filetype off
|
let g:terminal_color_8 = '#bdbdbd'
|
||||||
call vundle#begin()
|
let g:terminal_color_9 = '#ffa1a1'
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
let g:terminal_color_10 = '#bddeab'
|
||||||
Plugin 'nanotech/jellybeans.vim'
|
let g:terminal_color_11 = '#ffdca0'
|
||||||
Plugin 'itchyny/lightline.vim' " fancy status line
|
let g:terminal_color_12 = '#b1d8f6'
|
||||||
call vundle#end()
|
let g:terminal_color_13 = '#fbdaff'
|
||||||
|
let g:terminal_color_14 = '#1ab2a8'
|
||||||
" enable the filetype plugin
|
let g:terminal_color_15 = '#ffffff'
|
||||||
filetype plugin indent on
|
|
||||||
" ---------------------------------------------------------------------------}}}
|
|
||||||
|
Loading…
Reference in New Issue