Skip to content

Instantly share code, notes, and snippets.

@kielchang
Last active March 6, 2020 03:40
Show Gist options
  • Select an option

  • Save kielchang/00ead1bc69ef4ebf90119a895d23e6bd to your computer and use it in GitHub Desktop.

Select an option

Save kielchang/00ead1bc69ef4ebf90119a895d23e6bd to your computer and use it in GitHub Desktop.
set tabstop=2
set expandtab
set shiftwidth=2
set scrolloff=3
" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/vundle
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Put your stuff after this line
Plugin 'gmarik/vundle'
" Theme -> https://vimawesome.com/plugin/atom-dark
" Plugin 'gosukiwi/vim-atom-dark'
" Plugin 'sonph/onehalf', {'rtp': 'vim/'}
syntax on
set t_Co=256
set cursorline
" colorscheme atom-dark-256
" colorscheme onehalfdark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment