Update .vimrc

This commit is contained in:
2021-02-02 15:15:56 +03:00
parent 5027f376d9
commit 24058138c4

2
.vimrc
View File

@@ -3,6 +3,7 @@ syntax on
set number set number
set tabstop=2 softtabstop=2 set tabstop=2 softtabstop=2
set shiftwidth=2
set noswapfile set noswapfile
set smartindent set smartindent
set expandtab set expandtab
@@ -14,6 +15,7 @@ set colorcolumn=80
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'morhetz/gruvbox' Plug 'morhetz/gruvbox'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
call plug#end() call plug#end()