-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
73 lines (58 loc) · 1.06 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'chriskempson/base16-vim'
Plugin 'arcticicestudio/nord-vim'
Plugin 'aereal/vim-colors-japanesque'
Plugin 'rakr/vim-one'
call vundle#end()
set encoding=utf-8
set fileencoding=utf-8
syntax enable
" colorscheme base16-default-dark
" colorscheme nord
colorscheme japanesque
" let g:airline_theme='one'
filetype indent plugin on
syntax on
set tabstop=2
set softtabstop=0
set shiftwidth=2
set autoindent
set expandtab
set shiftround
set smarttab
set incsearch
set hlsearch
set ignorecase
set showmode
set showcmd
set modeline
set ruler
set title
set number
set relativenumber
set scrolloff=5
set clipboard=unnamed
set mouse=a
map <Up> <Nop>
imap <Up> <Nop>
map <Down> <Nop>
imap <Down> <Nop>
map <Left> <Nop>
imap <Left> <Nop>
map <Right> <Nop>
imap <Right> <Nop>
nmap <C-L><C-L> :set rnu!<CR>
" ---------
" Peut-être
" ---------
"
" set colorcolumn=10
" set hidden
" Cache les buffers > ouvrir un nouveau fichier sans avoir sauvegardé
"
" set cursorline
"