dotfiles/vimrc
2024-11-10 11:59:04 +01:00

65 lines
1.3 KiB
VimL

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.
" }}}