" My vimrc " enter the current millenium set nocompatible " enable syntax and plugins (for netrw) syntax on filetype plugin on " fzf without fzf set path+=** " cool completion menu set wildmenu " always show statusline set laststatus=2 " tabs settings set expandtab " numbers on the left set number " no wrap lines set nowrap " use system clipboard set clipboard=unnamedplus " show cursor position set cursorcolumn set cursorline " tweaks for file browsing let g:netrw_banner=0 let g:netrw_bworse_split=4 let g:netrw_altv=1 let g:netrw_liststyle=3 let g:netrw_list_hide=netrw_gitignore#Hide() let g:netrw_list_hide.=',\(^\|\s\s\)\zs\.\S\+' " insert skeletons nnoremap ,html :-1read ~/.vim/snippets/html3jwf>a nnoremap ,cpp :-1read ~/.vim/snippets/cpp2j5wa " open file explorer nmap :Ex " remap split navigation nmap :wincmd k nmap :wincmd j nmap :wincmd h nmap :wincmd l " plugins call plug#begin('~/.vim/plugged') " hex color preview Plug 'https://github.com/ap/vim-css-color' " gruvbox colorscheme Plug 'https://github.com/arcticicestudio/nord-vim' " html preview Plug 'turbio/bracey.vim' call plug#end() " set the color scheme colorscheme nord