-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
41 lines (36 loc) · 757 Bytes
/
Copy path.vimrc
File metadata and controls
41 lines (36 loc) · 757 Bytes
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
unlet! skip_defaults_vim
source $VIMRUNTIME/defaults.vim
syntax on
filetype plugin indent on
set mouse=a
set nocompatible
set backspace=indent,eol,start
set relativenumber
set number
set shiftwidth=2
set tabstop=2
set softtabstop=-1
set expandtab
set nowritebackup
set noswapfile
set linebreak
set breakindent
set breakindentopt=shift:2
set showbreak=↳\
set undodir=~/.vim/undo
set undofile
set wildmenu
set wildcharm=<tab>
set noshowmode
set list
set listchars=trail:·,tab:→\ ,nbsp:·
set incsearch
set termguicolors
let &t_SI = "\e[6 q"
let &t_EI = "\e[2 q"
silent! colorscheme rosepine
let g:oscyank_silent = 1
autocmd TextYankPost *
\ if v:event.operator is 'y' && v:event.regname is '+' |
\ execute 'OSCYankRegister +' |
\ endif