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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
filetype plugin on
filetype plugin indent on
"source ~/.vim/grep.vim
let maplocalleader = "\\"
let mapleader = ","
syntax on
set autoread
set foldmethod=manual
set autowrite
set backspace=indent,eol,start
"set colorcolumn=80
"set cursorline
set completeopt=menuone,longest
set display=truncate
set equalalways
set fileformat=unix
set hidden
set history=1000
set ignorecase
set incsearch
set infercase
set lazyredraw
set laststatus=2
"set list
set listchars=nbsp:%,tab:▸\ ,trail:_,eol:¬,precedes:←,extends:→
set matchtime=8
set nobackup
set nocompatible
set hlsearch
set nojoinspaces
set nomodeline
set noshelltemp
set noswapfile
set nocursorline
set noundofile
set nowritebackup
set path+=**
set report=0
set ruler
set scrolloff=5
set shell=bash
set shortmess+=c
set showcmd
"set showbreak=\
set showmatch
set showmode
set laststatus=0
set signcolumn=number
set splitright
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
set ttimeout
set ttyfast
set ttimeoutlen=100
"set viminfo=
set wildmenu
set wildoptions=pum
set wildmode=longest:full,full
set wildignore=**/__pycache*/**
set undodir=$HOME/.vimundo
set undofile
set undolevels=999
set undoreload=10000
set wrap
packadd! matchit
" highlight spaces at the end of line
highlight WhiteSpaceEOL ctermbg=darkgreen
match WhiteSpaceEOL /\s$/
autocmd WinEnter * match WhiteSpaceEOL /\s$/
" after you paste something, press gb to select it in visual mode
" so that you could format it or do something else
nnoremap <expr> gb '`[' . strpart(getregtype(), 0, 1) . '`]'
nnoremap <leader>ev <C-w>s<C-w>j<C-w>L:e $HOME/.vim/vimrc<cr>
nnoremap <C-l> :nohl<CR><C-L>
cnoreabbrev w!! w !sudo tee > /dev/null %| " write file with sudo
command! W w
if executable('rg')
set grepprg=rg\ --color=never\ --vimgrep
endif
augroup textfiles
autocmd!
autocmd filetype markdown setlocal spell spelllang=en
augroup end
set background=dark
colorscheme koehler
|