dotfiles/vimrc

42 lines
1.1 KiB
VimL
Raw Normal View History

" source ~/.vim/vimrc.bepo
2020-09-30 00:29:42 +02:00
" load plugins
" execute pathogen#infect()
2020-09-30 00:29:42 +02:00
filetype plugin indent on
2020-05-14 11:43:58 +02:00
let mapleader=' '
2021-05-10 19:05:02 +02:00
" paramètres de plugins
let g:rainbow_active = 1
2021-05-10 19:05:02 +02:00
let g:doge_doc_standard_c='kernel_doc'
let g:grammalecte_cli_py='$HOME/.local/bin/grammalecte/grammalecte-cli.py'
2020-05-14 11:43:58 +02:00
colorscheme codedark
syntax on
2020-05-14 11:43:58 +02:00
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
2020-09-30 00:29:42 +02:00
autocmd Filetype java setlocal expandtab tabstop=8 shiftwidth=8 softtabstop=8
autocmd Filetype javascript setlocal expandtab tabstop=2 shiftwidth=2 softtabstop=2
autocmd Filetype c setlocal expandtab tabstop=2 shiftwidth=2 softtabstop=2