Skip to content

Instantly share code, notes, and snippets.

@jssee
Forked from bendc/.vimrc
Last active March 16, 2017 18:36
Show Gist options
  • Save jssee/5816bb4e1c6f31f002ab780a7a23920c to your computer and use it in GitHub Desktop.
Save jssee/5816bb4e1c6f31f002ab780a7a23920c to your computer and use it in GitHub Desktop.
Vim config
set nocompatible
set encoding=utf-8 nobomb
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle
Plugin 'VundleVim/Vundle.vim'
" solarized color theme
Plugin 'altercation/vim-colors-solarized'
" es6 syntax
Plugin 'othree/yajs.vim'
" Stylus Syntax
Plugin 'wavded/vim-stylus'
" html5 syntax
Plugin 'othree/html5.vim'
" css3 syntax
Plugin 'hail2u/vim-css3-syntax'
" automatic closing of quotes, parenthesis, brackets, etc.
Plugin 'Raimondi/delimitMate'
" tab line
Plugin 'vim-airline/vim-airline'
" all plugins must be added before the following line
call vundle#end()
filetype plugin indent on
" enable ruler and line numbers
set ruler
set number
" enable solarized theme
syntax enable
let g:solarized_termtrans=1
set background=dark
colorscheme solarized
" soft tabs ftw
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
" airline config
set noshowmode
set laststatus=2
let g:airline_powerline_fonts=1
let g:airline#parts#ffenc#skip_expected_string='utf-8[unix]'
let g:airline_skip_empty_sections=1
" wrap text
set tw=100
set formatoptions+=t
" ignore case of searches
set ignorecase
" highlight dynamically as pattern is typed
set incsearch
" show the filename in the window titlebar
set title
" don’t reset cursor to start of line when moving around
set nostartofline
" show the (partial) command as it’s being typed
set showcmd
" don’t reset cursor to start of line when moving around
set nostartofline
" don’t add empty newlines at the end of files
set noeol
" start scrolling three lines before the horizontal window border
set scrolloff=3
" disable cursorline in insert mode
set cul
autocmd InsertEnter,InsertLeave * set nocul!
" nicer netrw
let g:netrw_banner=0
let g:netrw_liststyle=3
let g:netrw_list_hide='.*\.swp$,\~$,\.orig$'
" remap ctrl-c to esc
inoremap <C-c> <Esc><Esc>
" strip trailing spaces
fun! <SID>StripTrailingWhitespaces()
let l = line(".")
let c = col(".")
%s/\s\+$//e
call cursor(l, c)
endfun
autocmd BufWritePre * :call <SID>StripTrailingWhitespaces()
" insert HTML template in new HTML files
:autocmd BufNewFile *.html 0r ~/.vim/templates/html.tpl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment