Skip to content

Instantly share code, notes, and snippets.

@sekika
Created January 8, 2018 05:03
Show Gist options
  • Save sekika/6a0797794e601509ccde8b9739067c53 to your computer and use it in GitHub Desktop.
Save sekika/6a0797794e601509ccde8b9739067c53 to your computer and use it in GitHub Desktop.
syntax on
set autoindent
set expandtab
let _curfile=expand("%:r")
if _curfile == 'Makefile'
set noexpandtab
endif
set tabstop=4
set shiftwidth=4
set cursorline
set number
set laststatus=2
set showmatch
set scrolloff=8
set sidescrolloff=16
set sidescroll=1
set confirm
set autoread
set nobackup
set noswapfile
set hlsearch
set incsearch
set ignorecase
set smartcase
set wrapscan
set gdefault
set mouse=a
set visualbell t_vb=
set noerrorbells
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment