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
98
99
100
|
""
" Configuration for my config organization
"
set directory=$XDG_CONFIG_HOME/vim,~/,/tmp
set backupdir=$XDG_CACHE_HOME/vim,~/,/tmp
set viminfo+=n$XDG_CACHE_HOME/vim/viminfo
set runtimepath=$XDG_CONFIG_HOME/vim,$XDG_CONFIG_HOME/vim/after,$VIM,$VIMRUNTIME
let $MYVIMRC="$XDG_CONFIG_HOME/vim/main.vim"
""
" Auto-load plugins from $VIMRUNTIME/bundle
"execute pathogen#infect()
""
" General mappings and stuff
let mapleader = "-"
""
" Apply filetype-based indent rules and plugins
filetype plugin indent on
" Arch comes with some sensible defaults, might as well use them
runtime! archlinux.vim
" And so does vim itself
runtime! defaults.vim
" I like reading manpages in vim.
runtime! ftplugin/man.vim
""
" Load the matchit plugin (shipped with vim) for jumping to matching #ifs and
" #endifs and so on.
" Requires vim 8 for :packadd
packadd! matchit
" romainl's apprentice colorscheme, with a few changes for higher contrast
colorscheme apprentice
""
" Settings!
"
set expandtab " <tab> expans to spaces
set shiftwidth=4 " 4 spaces for autoindent
set softtabstop=4 " <tab> inserts 4 spaces at a time
set autowrite " write before swapping buffers
set number " regular line numbers
set ttyfast " xterms and linux consoles are fast
set ttymouse=sgr " for mouse events in columns >233
set clipboard=unnamed " default to the * register to share with X11
set undolevels=100000 " don't discard my undo tree
set undofile " persistent undo tree
"
""
" PASTEBIN with pbpst
"
" Mappings:
" <leader>p{motion} Paste {motion} lines
" <leader>pp Paste entire buffer (same as gg<leader>pG)
" <leader>p (Visual) paste selection
"
" The pastebin URL is stored to the * register.
" With +X11, this is shared with the X primary selection (middle click or
" shift-insert to paste.)
function! Paste(type, ...)
" Line-wise ranges
if a:type == 'line' || a:type == 'V' || a:type == '%'
if a:type == 'line'
let start = "'[" " motion lines
let end = "']"
elseif a:type == 'V'
let start = "'<" " visual lines
let end = "'>"
else
let start = 1 " entire file
let end = "$"
endif
let @* = systemlist('pbpst -S 2>/dev/null', getline(start, end))[0] . '/' . &filetype
" Character-wise ranges
elseif a:type == 'char' || a:type == 'v'
if a:type == 'char'
let start = "'[" " motion
let end = "']"
else
let start = "`<" " visual
let end = "`>"
endif
let input = getline(start, end)
let input[0] = input[0][col(start):]
let input[-1] = input[-1][:col(end)-1]
let @* = systemlist('pbpst -S 2>/dev/null', input)[0] . '/' . &filetype
" Block ranges (not handled)
else
echoerr "Paste: unsupported selection type: " . a:type
endif
endfunction
nnoremap <leader>p :silent set opfunc=Paste<cr>g@
nnoremap <leader>pp :call Paste('%')<CR>
vnoremap <leader>p <esc>:call Paste(visualmode())<CR>
""
|