Last active
October 11, 2018 18:29
-
-
Save bendc/271ba8917147509c8c3ae18d9b46eff5 to your computer and use it in GitHub Desktop.
Vim config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
" 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' | |
" commentary | |
Plugin 'tpope/vim-commentary' | |
" 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 | |
" 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$,\.DS_Store' | |
" 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