From 6475d6ab233bf9def37a14891232b0b6fd13c13b Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Sun, 10 Nov 2024 11:59:04 +0100 Subject: [PATCH] feat: vim files --- vim | 1 + vimrc | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 120000 vim create mode 100644 vimrc diff --git a/vim b/vim new file mode 120000 index 0000000..88165b8 --- /dev/null +++ b/vim @@ -0,0 +1 @@ +/home/arthur.wambst/.vim \ No newline at end of file diff --git a/vimrc b/vimrc new file mode 100644 index 0000000..2562cbe --- /dev/null +++ b/vimrc @@ -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. + +" }}} +