Skip to content

Instantly share code, notes, and snippets.

@wzhliang
Created December 18, 2018 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wzhliang/e75963c9159e5d17addd0b6ead4bdc77 to your computer and use it in GitHub Desktop.
Save wzhliang/e75963c9159e5d17addd0b6ead4bdc77 to your computer and use it in GitHub Desktop.
" Vimrc file, http://phuzz.org
set nocompatible " use vim defaults
set ls=2 " allways show status line
set tabstop=4 " numbers of spaces of tab character
set shiftwidth=4 " numbers of spaces to (auto)indent
set scrolloff=3 " keep 3 lines when scrolling
set showcmd " display incomplete commands
set hlsearch " highlight searches
set incsearch " do incremental searching
set ruler " show the cursor position all the time
set visualbell t_vb= " turn off error beep/flash
set novisualbell " turn off visual bell
set nobackup " do not keep a backup file
set number " show line numbers
set smartcase " ignore case when searching
"set noignorecase " don't ignore case
set title " show title in console title bar
set ttyfast " smoother changes
"set ttyscroll=0 " turn off scrolling, didn't work well with PuTTY
set modeline " last lines in document sets vim mode
set modelines=3 " number lines checked for modelines
set shortmess=atI " Abbreviate messages
set nostartofline " don't jump to first character when paging
set whichwrap=b,s,h,l,<,>,[,] " move freely between files
set backspace=indent,eol,start
"set viminfo='20,<50,s10,h
set autoindent " always set autoindenting on
set diffopt+=vertical
set nobomb
set foldmethod=marker
set foldlevel=999
set smartindent " smart indent
"set cindent " cindent
"set noautoindent
"set smartindent
"set nocindent
"set autowrite " auto saves changes when quitting and swiching buffer
set expandtab " tabs are converted to spaces, use only when required
set showmatch " show matching braces, somewhat annoying...
set matchtime=0 " no annoying jumping for show match
"set nowrap " don't wrap lines
set relativenumber
set rtp^=~/.vim
filetype plugin on
syntax on " syntax highlighing
set background=dark " adapt colors for background
if has("autocmd")
" Restore cursor position
au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif
" Filetypes (au = autocmd)
au FileType helpfile set nonumber " no line numbers when viewing help
au FileType helpfile nnoremap <buffer><cr> <c-]> " Enter selects subject
au FileType helpfile nnoremap <buffer><bs> <c-T> " Backspace to go back
" When using mutt, text width=72
au FileType mail,tex setlocal textwidth=72
au FileType cpp,c,java,sh,pl,php,asp setlocal autoindent
au FileType cpp,c,java,sh,pl,php,asp setlocal smartindent
au FileType cpp,c,java,sh,pl,php,asp setlocal cindent
au FileType markdown setlocal expandtab
au FileType markdown setlocal tabstop=4
au FileType markdown setlocal shiftwidth=4
au FileType markdown setlocal makeprg=open\ %
au FileType markdown setlocal wrap
au FileType rst setlocal makeprg=restview\ %
au FileType xml,html,jade setlocal textwidth=999
au FileType xml,html,jade setlocal tabstop=2
au FileType xml,html,jade setlocal shiftwidth=2
au FileType xml,html,jade setlocal expandtab
"au BufRead mutt*[0-9] set tw=72
" Automatically chmod +x Shell and Perl scripts
"au BufWritePost *.sh !chmod +x %
"au BufWritePost *.pl !chmod +x %
" File formats
au BufNewFile,BufRead *.pls set syntax=dosini
au BufNewFile,BufRead modprobe.conf set syntax=modconf
endif
com! CD lcd %:p:h
" Keyboard mappings
map <silent> <C-N> :silent noh<CR> " turn off highlighted search
"map ,v :sp ~/.vimrc<cr> " edit my .vimrc file in a split
"map ,e :e ~/.vimrc<cr> " edit my .vimrc file
"map ,u :source ~/.vimrc<cr> " update the system settings from my vimrc file
"----- write out html file
"map ,h :source $VIM/vim71/syntax/2html.vim<cr>:w<cr>:clo<cr>
iab pdb import pdb; pdb.set_trace()
iab ndb from nose.tools import set_trace; set_trace()
iab idb from ipdb import set_trace; set_trace()
cab ow e ~/Dropbox/wiki/
behave xterm
set hidden
set cmdheight=2
"nnoremap <F8> :Tlist<CR> " map F2 to open next buffer
nnoremap <F2> :w<CR>
nnoremap <F3> :grep -w <C-R><C-W>
nnoremap <F4> :Unite buffer<CR>
nnoremap <F5> :CtrlP<CR>
nnoremap <F6> :set invlist<CR>
nnoremap <F8> :TagbarToggle<CR>
if has('mac')
nmap <PageDown> :cnext<CR> " fn + Down
nmap <PageUp> :cprev<CR> " fn + Up
else
nmap <C-Down> :cnext<CR>
nmap <C-Up> :cprev<CR>
endif
nnoremap <F9> :make<CR>
so $HOME/.vim/project.vim
set lcs=tab:^-,trail:-
nmap <C-Enter> :cs f s <C-R><C-W><CR>
nmap <C-rightmouse> <C-t>
set cscopequickfix=s-,g-,d-,c-,t-,e-,i-
set nowrap
au BufEnter *.[ch] setlocal cin
au BufEnter Dockerfile.* set ft=dockerfile
"pylint plugin
au FileType python compiler pylint
let g:pylint_onwrite = 0
let Tlist_Show_One_File = 1
nmap <F12> :botright cwindow<CR>
nmap <C-F12> :cclose<CR>
let mapleader = ","
nnoremap <F7> :Amarks<CR>
imap &i75 <img src="" width=75%><Left><Left><Left><Left><Left><Left><Left><Left><Left><Left><Left><Left>
command! W :lcd ~/Dropbox/wiki
set grepprg=ag\ --vimgrep\ $*
set grepformat=%f:%l:%c:%m
nmap <Leader>S :SyntasticToggleMode<CR>
let g:pyflakes_use_quickfix = 0
call pathogen#infect()
set listchars=tab:»\ ,trail:·
let g:cssColorVimDoNotMessMyUpdatetime = 1
let g:tagbar_sort=0
let g:tagbar_type_markdown = {
\ 'ctagstype' : 'markdown',
\ 'kinds' : [
\ 'h:Heading_L1',
\ 'i:Heading_L2',
\ 'k:Heading_L3'
\ ]
\ }
let g:go_fmt_command="goimports"
" settings for syntastic
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_html_checkers=['']
let g:rooter_patterns = ['venv', '.git/']
autocmd BufReadPost * :Rooter
set completeopt+=menuone
"let g:deoplete#enable_at_startup = 1
"let g:deoplete#complete_method = "complete"
let g:ale_sign_column_always = 1
if has('mac')
nmap <D-left> :tabprevious<CR>
nmap <D-right> :tabnext<CR>
endif
color molokai
let g:python3_host_prog="/usr/local/bin/python3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment