Last active
March 6, 2020 03:40
-
-
Save kielchang/00ead1bc69ef4ebf90119a895d23e6bd to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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