set nocompatible set showmatch set ignorecase set number set tabstop=4 set expandtab set shiftwidth=4 colorscheme habamax set colorcolumn=120 call plug#begin() Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} Plug 'preservim/nerdtree' Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } call plug#end() "NERDTree nnoremap :NERDTreeToggle nnoremap :FZF "fzf let g:fzf_action = { 'enter': 'tab split' } " tabs nnoremap th :tabfirst nnoremap tk :tabnext nnoremap tj :tabprev nnoremap tl :tablast nnoremap tt :tabedit nnoremap tn :tabnext nnoremap tm :tabm nnoremap td :tabclose