Compare commits
No commits in common. "ed72e6112460dcb84ac18465622ce4426de69572" and "ba3d8bc5f942bd92e262759ad9aba7f6567fa212" have entirely different histories.
ed72e61124
...
ba3d8bc5f9
@ -15,9 +15,8 @@ set lazyredraw nocursorline ttyfast
|
||||
|
||||
" use system clipboard instead of internal
|
||||
set clipboard=unnamedplus
|
||||
" when using c or s, do not overwrite clipboard
|
||||
" when using c, do not overwrite clipboard
|
||||
nnoremap c "-c
|
||||
nnoremap s "-s
|
||||
|
||||
let mapleader = ","
|
||||
|
||||
@ -36,32 +35,6 @@ highlight LineNr ctermfg=grey
|
||||
" Disable highlighting when searching
|
||||
nnoremap <silent> <esc> :noh<return><esc>
|
||||
|
||||
" see :help digraphs
|
||||
" these digraphs are reminiscent of canadian french keyboard layout
|
||||
call digraph_setlist([
|
||||
\["'a", 'à'],
|
||||
\["'e", 'è'],
|
||||
\["'u", 'ù'],
|
||||
\["/e", 'é'],
|
||||
\["}a", 'ä'],
|
||||
\["}e", 'ë'],
|
||||
\["}i", 'ï'],
|
||||
\["}o", 'ö'],
|
||||
\["}u", 'ü'],
|
||||
\["}y", 'ÿ'],
|
||||
\["]c", 'ç'],
|
||||
\["[a", 'â'],
|
||||
\["[e", 'ê'],
|
||||
\["[i", 'î'],
|
||||
\["[o", 'ô'],
|
||||
\["[u", 'û'],
|
||||
\])
|
||||
|
||||
" misc funny digraphs
|
||||
call digraph_setlist([
|
||||
\["++", '✝'],
|
||||
\["+-", '†'],
|
||||
\])
|
||||
|
||||
" NetRW
|
||||
|
||||
|
@ -1,10 +0,0 @@
|
||||
xpilot.name: immy
|
||||
xpilot.user:imogen
|
||||
xpilot.host:localhost
|
||||
|
||||
xpilot.keyTurnLeft: a
|
||||
xpilot.keyTurnRight: d
|
||||
xpilot.keyThrust: w
|
||||
|
||||
xpilot.keyLockClose: e
|
||||
xpilot.keyLockClose: q
|
@ -1,10 +1,9 @@
|
||||
#!/bin/sh
|
||||
# Quick editor popup
|
||||
# Edit clipboard contents with $EDITOR
|
||||
|
||||
TMPFILE="$(mktemp)"
|
||||
|
||||
#xsel -b > "$TMPFILE"
|
||||
st -g 60x8+0+800 -n popup-bottom-center \
|
||||
-e nvim -c "set binary noeol" -c "startinsert" "$TMPFILE" -c "highlight Normal ctermbg=016"
|
||||
xsel -b > "$TMPFILE"
|
||||
nvim "$TMPFILE"
|
||||
cat "$TMPFILE" | xsel -ib
|
||||
rm "$TMPFILE"
|
||||
|
@ -32,8 +32,6 @@ export GOPATH="$HOME"/.local/go
|
||||
export npm_config_userconfig=$XDG_CONFIG_HOME/npm/config
|
||||
export npm_config_cache=$XDG_CACHE_HOME/npm
|
||||
export npm_config_prefix=$XDG_DATA_HOME/npm
|
||||
# xpilot
|
||||
export XPILOTRC=$XDG_CONFIG_HOME/xpilotrc
|
||||
|
||||
# minrss scripts
|
||||
export MRSS_DIR="$HOME/dox/rss"
|
||||
|
Loading…
x
Reference in New Issue
Block a user