some vim tweaks + added terminus that works with urxvt (yes, binary crap in my repo yay)
This commit is contained in:
parent
6622c84c0a
commit
c3cab798ce
3 changed files with 15 additions and 10 deletions
BIN
terminus-font.txz
Normal file
BIN
terminus-font.txz
Normal file
Binary file not shown.
17
vimrc
17
vimrc
|
@ -25,6 +25,9 @@ set smartcase
|
||||||
set clipboard=exclude:.*
|
set clipboard=exclude:.*
|
||||||
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
|
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
|
||||||
|
|
||||||
|
set list
|
||||||
|
set listchars=tab:→\ ,trail:•,nbsp:×
|
||||||
|
|
||||||
" set indentation options for specific file types
|
" set indentation options for specific file types
|
||||||
autocmd FileType ruby setlocal sts=2 sw=2 expandtab
|
autocmd FileType ruby setlocal sts=2 sw=2 expandtab
|
||||||
autocmd FileType eruby setlocal sts=2 sw=2 expandtab
|
autocmd FileType eruby setlocal sts=2 sw=2 expandtab
|
||||||
|
@ -61,18 +64,18 @@ if v:version >= 703
|
||||||
filetype off
|
filetype off
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim/
|
set rtp+=~/.vim/bundle/Vundle.vim/
|
||||||
call vundle#begin()
|
call vundle#begin()
|
||||||
Plugin 'gmarik/Vundle.vim' "plugin manager
|
Plugin 'gmarik/Vundle.vim' "plugin manager
|
||||||
|
|
||||||
" general plugins
|
" general plugins
|
||||||
Plugin 'scrooloose/nerdtree' "file manager
|
|
||||||
Plugin 'scrooloose/syntastic' "syntax checker
|
|
||||||
Plugin 'msanders/snipmate.vim' "snippets support
|
|
||||||
Plugin 'bling/vim-airline' "stylish info display
|
Plugin 'bling/vim-airline' "stylish info display
|
||||||
Plugin 'bling/vim-bufferline' "stylish buffer display
|
Plugin 'bling/vim-bufferline' "stylish buffer display
|
||||||
Plugin 'tpope/vim-surround' "quotes replacement made easy
|
|
||||||
Plugin 'mbbill/undotree' "undo buffer manager
|
|
||||||
Plugin 'jiangmiao/auto-pairs' "auto add closing brackets and quotes
|
Plugin 'jiangmiao/auto-pairs' "auto add closing brackets and quotes
|
||||||
|
Plugin 'mbbill/undotree' "undo buffer manager
|
||||||
Plugin 'mhinz/vim-signify' "version control system gutter info
|
Plugin 'mhinz/vim-signify' "version control system gutter info
|
||||||
|
Plugin 'msanders/snipmate.vim' "snippets support
|
||||||
|
Plugin 'scrooloose/nerdtree' "file manager
|
||||||
|
Plugin 'scrooloose/syntastic' "syntax checker
|
||||||
|
Plugin 'tpope/vim-surround' "quotes replacement made easy
|
||||||
|
|
||||||
" syntax highlight plugins
|
" syntax highlight plugins
|
||||||
Plugin 'puppetlabs/puppet-syntax-vim' "puppet
|
Plugin 'puppetlabs/puppet-syntax-vim' "puppet
|
||||||
|
@ -81,6 +84,8 @@ if v:version >= 703
|
||||||
|
|
||||||
" airline options
|
" airline options
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
|
let g:airline_symbols = {}
|
||||||
|
let g:airline_symbols.whitespace = '!'
|
||||||
|
|
||||||
" signify options
|
" signify options
|
||||||
let g:signify_vcs_list = [ 'svn', 'git' ]
|
let g:signify_vcs_list = [ 'svn', 'git' ]
|
||||||
|
|
|
@ -8,10 +8,10 @@ Xft.dpi: 96
|
||||||
|
|
||||||
! urxvt
|
! urxvt
|
||||||
URxvt.scrollBar: false
|
URxvt.scrollBar: false
|
||||||
URxvt.font: xft:Terminus:size=11
|
URxvt.font: xft:Terminus:size=11:antialias=false
|
||||||
URxvt.boldFont: xft:Terminus:size=11
|
URxvt.boldFont: xft:Terminus:size=11:antialias=false
|
||||||
URxvt.boldItalicFont: xft:Terminus:size=11
|
URxvt.boldItalicFont: xft:Terminus:size=11:antialias=false
|
||||||
URxvt.italicFont: xft:Terminus:size=11
|
URxvt.italicFont: xft:Terminus:size=11:antialias=false
|
||||||
URxvt.saveLines: 1000
|
URxvt.saveLines: 1000
|
||||||
URxvt.iso14755: false
|
URxvt.iso14755: false
|
||||||
URxvt.visualBell: true
|
URxvt.visualBell: true
|
||||||
|
|
Loading…
Reference in a new issue