Skip to content

Instantly share code, notes, and snippets.

@joaovitorzv
Created June 22, 2021 18:38
Show Gist options
  • Save joaovitorzv/5d36648f7bad70c0bdd3df793549af2e to your computer and use it in GitHub Desktop.
Save joaovitorzv/5d36648f7bad70c0bdd3df793549af2e to your computer and use it in GitHub Desktop.
Vim configuration
set tabstop=2 softtabstop=2
set shiftwidth=2
set expandtab
set smartindent
syntax on
set guicursor=
set relativenumber
set nu
set nohlsearch
set nowrap
set incsearch
set scrolloff=8
set signcolumn=yes
set backspace=indent,eol,start
call plug#begin('~/.vim/plugged')
Plug 'gruvbox-community/gruvbox'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()
colorscheme gruvbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment