Skip to content

Instantly share code, notes, and snippets.

@ciurca
Created June 9, 2020 10:23
Show Gist options
  • Save ciurca/73a2ec5b280b70ed87b5e91859272127 to your computer and use it in GitHub Desktop.
Save ciurca/73a2ec5b280b70ed87b5e91859272127 to your computer and use it in GitHub Desktop.
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
@ciurca
Copy link
Author

ciurca commented Jun 23, 2020

Edit VIMrc:

syntax on

set tabstop=4 softtabstop=4
set smartindent
set nu
set smartcase
set nowrap
set noswapfile
set incsearch


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'
"WakaTime Plugin"
Plug 'wakatime/vim-wakatime'
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