Files
dotfiles/.vimrc
2021-02-02 15:15:56 +03:00

24 lines
329 B
VimL

syntax on
set number
set tabstop=2 softtabstop=2
set shiftwidth=2
set noswapfile
set smartindent
set expandtab
set encoding=utf-8
set wrap
set colorcolumn=80
call plug#begin('~/.vim/plugged')
Plug 'morhetz/gruvbox'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
call plug#end()
colorscheme gruvbox
set background=dark