Add papercolor theme

This commit is contained in:
har0ke 2021-09-05 12:15:01 +02:00
parent 3e9a6c8dcd
commit 7152520c44
3 changed files with 65 additions and 2 deletions

View File

@ -1,6 +1,26 @@
xterm*saveLines: 10000000
xterm*background: black
xterm*foreground: white
xterm*faceSize: 12
xterm*faceName: Monospace
xterm*selectToClipboard: true
xterm*boldColors: false
xterm*foreground: #444444
xterm*background: #eeeeee
xterm*cursorColor: #005f87
xterm*color0: #eeeeee
xterm*color1: #af0000
xterm*color2: #008700
xterm*color3: #5f8700
xterm*color4: #0087af
xterm*color5: #878787
xterm*color6: #005f87
xterm*color7: #444444
xterm*color8: #bcbcbc
xterm*color9: #d70000
xterm*color10: #d70087
xterm*color11: #8700af
xterm*color12: #d75f00
xterm*color13: #d75f00
xterm*color14: #005faf
xterm*color15: #005f87

40
.vimrc Normal file
View File

@ -0,0 +1,40 @@
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-sensible'
Plug 'NLKNguyen/papercolor-theme'
Plug 'vim-scripts/DfrankUtil'
Plug 'vim-scripts/vimprj'
Plug 'ctrlpvim/ctrlp.vim'
" Plug 'Valloric/YouCompleteMe'
Plug 'scrooloose/nerdtree'
Plug 'vim-scripts/indexer.tar.gz'
call plug#end()
map <C-j> <C-W>j
map <C-k> <C-W>k
map <C-h> <C-W>h
map <C-l> <C-W>l
set t_Co=256 " This is may or may not needed.
set background=light
colorscheme PaperColor
" enable syntax highlighting
syntax on
" remove tailing spaces
autocmd BufWritePre * :%s/\s\+$//e
highlight Pmenu ctermbg=gray guibg=gray
:let g:ycm_show_diagnostics_ui = 0
:set tabstop=4
:set shiftwidth=4
:set expandtab
:set smartindent

3
install_vimplug.sh Executable file
View File

@ -0,0 +1,3 @@
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim