refactor: changement organisation & ajout nouv config
This commit is contained in:
parent
99301ceaa1
commit
c56665d3ea
1 changed files with 26 additions and 25 deletions
51
vimrc
51
vimrc
|
@ -1,40 +1,41 @@
|
|||
" source ~/.vim/vimrc.bepo
|
||||
source ~/.vim/vimrc.bepo
|
||||
|
||||
" load plugins
|
||||
" execute pathogen#infect()
|
||||
filetype plugin indent on
|
||||
|
||||
colorscheme codedark
|
||||
syntax on
|
||||
let mapleader=' '
|
||||
filetype plugin indent on " load filetype-specific indent files
|
||||
|
||||
set tabstop=4 " affiche 1 tab comme 4 espaces
|
||||
set softtabstop=4
|
||||
set shiftwidth=4 " > indente de 4 espaces
|
||||
set expandtab " tab = 4 espaces
|
||||
set smarttab
|
||||
set ai
|
||||
set si
|
||||
set wrap
|
||||
|
||||
set number " affiche les numéros de lignes
|
||||
set relativenumber " affiche les numéros de lignes en fonction de l’actuelle
|
||||
set noerrorbells " désactive le son en cas d’erreur
|
||||
set laststatus=2 " affiche le nom du fichier en bas
|
||||
set showcmd " affiche la commande en bas
|
||||
set cursorline " ligne actuelle en couleur
|
||||
set wildmenu " visual autocomplete for command menu
|
||||
set lazyredraw " redraw only when we need to.
|
||||
|
||||
set showmatch " highlight matching [{()}]
|
||||
set incsearch " search as characters are entered
|
||||
set hlsearch " highlight matches
|
||||
|
||||
" paramètres de plugins
|
||||
let g:rainbow_active = 1
|
||||
let g:doge_doc_standard_c='kernel_doc'
|
||||
let g:grammalecte_cli_py='$HOME/.local/bin/grammalecte/grammalecte-cli.py'
|
||||
|
||||
colorscheme codedark
|
||||
syntax on
|
||||
|
||||
set tabstop=4
|
||||
set softtabstop=4
|
||||
set expandtab
|
||||
set smarttab
|
||||
set shiftwidth=4
|
||||
set ai
|
||||
set si
|
||||
set wrap
|
||||
|
||||
set number
|
||||
|
||||
set showcmd " show command in bottom bar
|
||||
set cursorline " highlight current line
|
||||
filetype indent on " load filetype-specific indent files
|
||||
set wildmenu " visual autocomplete for command menu
|
||||
set lazyredraw " redraw only when we need to.
|
||||
set showmatch " highlight matching [{()}]
|
||||
|
||||
set incsearch " search as characters are entered
|
||||
set hlsearch " highlight matches
|
||||
|
||||
" parametre pour la taille des espaces selon le langage
|
||||
autocmd Filetype java setlocal expandtab tabstop=8 shiftwidth=8 softtabstop=8
|
||||
autocmd Filetype javascript setlocal expandtab tabstop=2 shiftwidth=2 softtabstop=2
|
||||
|
|
Reference in a new issue