Compare commits

..

No commits in common. "ed72e6112460dcb84ac18465622ce4426de69572" and "ba3d8bc5f942bd92e262759ad9aba7f6567fa212" have entirely different histories.

4 changed files with 4 additions and 44 deletions

View File

@ -15,9 +15,8 @@ set lazyredraw nocursorline ttyfast
" use system clipboard instead of internal " use system clipboard instead of internal
set clipboard=unnamedplus set clipboard=unnamedplus
" when using c or s, do not overwrite clipboard " when using c, do not overwrite clipboard
nnoremap c "-c nnoremap c "-c
nnoremap s "-s
let mapleader = "," let mapleader = ","
@ -36,32 +35,6 @@ highlight LineNr ctermfg=grey
" Disable highlighting when searching " Disable highlighting when searching
nnoremap <silent> <esc> :noh<return><esc> 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 " NetRW

View File

@ -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

View File

@ -1,10 +1,9 @@
#!/bin/sh #!/bin/sh
# Quick editor popup # Edit clipboard contents with $EDITOR
TMPFILE="$(mktemp)" TMPFILE="$(mktemp)"
#xsel -b > "$TMPFILE" xsel -b > "$TMPFILE"
st -g 60x8+0+800 -n popup-bottom-center \ nvim "$TMPFILE"
-e nvim -c "set binary noeol" -c "startinsert" "$TMPFILE" -c "highlight Normal ctermbg=016"
cat "$TMPFILE" | xsel -ib cat "$TMPFILE" | xsel -ib
rm "$TMPFILE" rm "$TMPFILE"

View File

@ -32,8 +32,6 @@ export GOPATH="$HOME"/.local/go
export npm_config_userconfig=$XDG_CONFIG_HOME/npm/config export npm_config_userconfig=$XDG_CONFIG_HOME/npm/config
export npm_config_cache=$XDG_CACHE_HOME/npm export npm_config_cache=$XDG_CACHE_HOME/npm
export npm_config_prefix=$XDG_DATA_HOME/npm export npm_config_prefix=$XDG_DATA_HOME/npm
# xpilot
export XPILOTRC=$XDG_CONFIG_HOME/xpilotrc
# minrss scripts # minrss scripts
export MRSS_DIR="$HOME/dox/rss" export MRSS_DIR="$HOME/dox/rss"