Add papercolor theme
This commit is contained in:
parent
3e9a6c8dcd
commit
7152520c44
24
.Xresources
24
.Xresources
@ -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
40
.vimrc
Normal 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
3
install_vimplug.sh
Executable file
@ -0,0 +1,3 @@
|
||||
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
|
Loading…
x
Reference in New Issue
Block a user