Archived
1
0
Fork 0
This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
fichiersvim/vimrc

37 lines
927 B
VimL
Raw Normal View History

2020-09-29 22:29:42 +00:00
"source ~/.vim/vimrc.bepo
" load plugins
2020-05-14 09:43:58 +00:00
execute pathogen#infect()
2020-09-29 22:29:42 +00:00
filetype plugin indent on
2020-05-14 09:43:58 +00:00
let mapleader=' '
let g:rainbow_active = 1
2020-05-14 09:43:58 +00:00
colorscheme codedark
syntax enable
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
2020-09-29 22:29:42 +00:00
" parametre pour la taille des espaces
autocmd Filetype java setlocal expandtab tabstop=8 shiftwidth=8 softtabstop=8
autocmd Filetype javascript setlocal expandtab tabstop=2 shiftwidth=2 softtabstop=2