diff --git a/.vimrc b/.vimrc index 897a35e..eae3890 100644 --- a/.vimrc +++ b/.vimrc @@ -5,6 +5,7 @@ set incsearch set hlsearch set number set relativenumber +set virtualedit=all " basic file explorer (p to preview hovered file, ctrl+w,z to close) let g:netrw_winsize = 15 @@ -16,16 +17,15 @@ map :Lexplore " indentation set tabstop=2 -set expandtab set shiftwidth=2 +set expandtab set autoindent -set smartindent set list set listchars=multispace:\ \ ▸ " folding set foldmethod=indent -set foldnestmax=10 +set foldnestmax=20 nnoremap U :syntax sync fromstart:redraw! " fix syntax highlighting glitch " splitting @@ -35,3 +35,13 @@ nnoremap nnoremap nnoremap nnoremap + +" plugins +call plug#begin() +Plug 'dense-analysis/ale' +Plug 'dylanaraps/wal.vim' +call plug#end() + +" set colorscheme +colorscheme wal +