Last active
January 30, 2019 02:34
-
-
Save jeffrey4l/e072731d8c42ade7b0e362dd7cf35ba3 to your computer and use it in GitHub Desktop.
Basic vim configuration
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
" Usage | |
" curl -L https://gist.github.com/jeffrey4l/e072731d8c42ade7b0e362dd7cf35ba3/raw/ -o ~/.vimrc | |
" Basic | |
set nocompatible | |
" Indentation & Tabs | |
set autoindent | |
set cindent | |
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set smarttab | |
autocmd BufRead,BufNewFile *.html setl shiftwidth=2 softtabstop=2 expandtab | |
autocmd BufRead,BufNewFile *.yml setl shiftwidth=2 softtabstop=2 expandtab | |
autocmd BufRead,BufNewFile *.yaml setl shiftwidth=2 softtabstop=2 expandtab | |
" Display & format | |
set number | |
set showmatch | |
syntax enable | |
colorscheme desert | |
filetype plugin on | |
filetype indent on | |
" Search | |
set hlsearch | |
set incsearch | |
set ignorecase | |
set smartcase | |
" Browse & Scroll | |
set scrolloff=5 | |
set laststatus=2 | |
" Encoding | |
" support show chinese | |
set fileencodings=utf-8,ucs-bom,gbk,gb2312,gb18030,cp936 | |
set encoding=utf-8 | |
" Persistent undo | |
" Use following command to clear old undofile | |
" find ~/.vim.cache/undo -type f -mtime +90 -delete | |
if has('persistent_undo') | |
if !isdirectory($HOME."/.vim.cache") | |
call mkdir($HOME."/.vim.cache", "", 0770) | |
endif | |
if !isdirectory($HOME."/.vim.cache/undo") | |
call mkdir($HOME."/.vim.cache/undo", "", 0700) | |
endif | |
set undodir=$HOME/.vim.cache/undo | |
set undofile | |
endif | |
" Miscellaneous | |
set nobackup | |
set noswapfile | |
if has('autochdir') | |
set autochdir | |
endif | |
set undofile | |
set visualbell | |
set errorbells | |
set t_vb= | |
let mapleader = "," | |
set paste | |
" sudo write | |
command W w !sudo tee % > /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment