blob: 56fd291f8d8231f606ebfaedd5e272f944045103 (
plain)
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
|
filetype plugin on
syntax on
filetype indent on
set autochdir
set autoindent
set cursorline
set expandtab
set hlsearch
set ignorecase
set listchars=tab:>-,trail:~,extends:>,precedes:<,space:.
set mouse=a
set number
set relativenumber
set shiftwidth=4
set showmatch
set smartcase
set softtabstop=4
set tabstop=4
set termguicolors
set ttimeout
set ttimeoutlen=0
set ttyfast
nnoremap <C-d> <C-d>zz
nnoremap <C-u> <C-u>zz
nnoremap n nzzzv
nnoremap N Nzzzv
vnoremap <C-c> "+y
vmap <C-x> "+x
map <C-p> "+p
map <Leader>p "+P
|