summaryrefslogtreecommitdiff
path: root/vim/main.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/main.vim')
-rw-r--r--vim/main.vim100
1 files changed, 100 insertions, 0 deletions
diff --git a/vim/main.vim b/vim/main.vim
new file mode 100644
index 0000000..48bcd14
--- /dev/null
+++ b/vim/main.vim
@@ -0,0 +1,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>
+""