feat: vim files
This commit is contained in:
commit
6475d6ab23
64
vimrc
Normal file
64
vimrc
Normal file
@ -0,0 +1,64 @@
|
||||
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.
|
||||
|
||||
" }}}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user