set nocompatible filetype on filetype plugin on filetype indent on syntax on set number set cursorline set tabstop=4 set nobackup set nowrap set incsearch set ignorecase set smartcase set showcmd set showmode set showmatch set hlsearch " PLUGINS ---------------------------------------------------------------- {{{ call plug#begin('~/.vim/plugged') Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'tpope/vim-sensible' Plug 'preservim/nerdtree' Plug 'jiangmiao/auto-pairs' Plug 'rrethy/vim-hexokinase', {'do': 'make hexokinase'} "Plug 'neoclide/coc.nvim', {'branch': 'release'} "#https://vimawesome.com/plugin/syntastic "#https://vimawesome.com/plugin/vim-airline-superman "#supertab OU coc pour autocompletion avec tab "#https://vimawesome.com/plugin/fswitch call plug#end() " }}} " MAPPINGS --------------------------------------------------------------- {{{ " Mappings code goes here. " }}} " VIMSCRIPT -------------------------------------------------------------- {{{ " This will enable code folding. " Use the marker method of folding. "augroup filetype_vim " autocmd! " autocmd FileType vim setlocal foldmethod=marker "augroup END " More Vimscripts code goes here. " }}} " STATUS LINE ------------------------------------------------------------ {{{ " Status bar code goes here. " }}}