Created
June 9, 2020 10:23
-
-
Save ciurca/73a2ec5b280b70ed87b5e91859272127 to your computer and use it in GitHub Desktop.
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
syntax on | |
set tabstop=4 softtabstop=4 | |
set smartindent | |
set nu | |
set smartcase | |
set noswapfile | |
set incsearch | |
set colorcolumn=80 | |
highlight ColorColumn ctermbg=0 guibg=lightgrey | |
call plug#begin('~/.vim/plugged') | |
" Theme | |
Plug 'morhetz/gruvbox' | |
"Syntax stuff | |
Plug 'sheerun/vim-polyglot' | |
"Folder like structure | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
"Little bar below, still not sure what it does | |
Plug 'vim-airline/vim-airline' | |
"Git plugin, have to see how it works | |
Plug 'tpope/vim-fugitive' | |
"AutoCompleter | |
Plug 'ycm-core/YouCompleteMe' | |
"HtmlServer | |
Plug 'turbio/bracey.vim' | |
"Automatic Pairer" | |
Plug 'tmsvg/pear-tree' | |
call plug#end() | |
colorscheme gruvbox | |
set background=dark |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Edit VIMrc: