Created
August 24, 2015 23:25
-
-
Save gnuwilliam/afb20e5231193c4a8c0f to your computer and use it in GitHub Desktop.
.vimrc lua 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
autocmd! | |
syntax on | |
:colorscheme inkpot | |
set number | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set smarttab | |
set expandtab | |
set autoindent | |
set cindent | |
set smartindent | |
set nobackup | |
set nowritebackup | |
set backspace=indent,eol,start | |
set wildmode=longest,list | |
set wildmenu | |
set cc=80 | |
filetype on | |
filetype plugin on | |
filetype indent on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment