Update 2022-12-19 09:51 OpenBSD/amd64

This commit is contained in:
c0dev0id 2022-12-19 09:51:31 +01:00
parent 2ed3dbb6d7
commit 2c47405cd2
2 changed files with 4 additions and 2 deletions

2
.kshrc
View File

@ -73,7 +73,7 @@ PAGER="less"
export EDITOR VISUAL BROWSER TUIR_BROWSER PAGER
### NNN
NNN_OPTS="cErxAJ"
NNN_OPTS="cErxAJBR"
NNN_OPENER="nnn.sh"
NNN_FIFO=/tmp/nnn.fifo
NNN_PLUG='o:-!mpv "$nnn";x:-!sh -x "$nnn";i:imgview;p:-!pdfarranger "$nnn" > /dev/null 2>&1 &'

View File

@ -24,6 +24,8 @@ set spelllang=de,en
set re=1
let mapleader = ","
set formatprg=par\ -w72qie
" * and # are only highlighting
" n searches in the direction of * or #
nnoremap * *``
@ -231,7 +233,7 @@ function MyMake()
if filereadable("Makefile")
:w! | !make
else
:w! | !cc -o %:p:r -lsndio %:p
:w! | !cc -Wall -g -O0 -o %:p:r -lsndio %:p
endif
endfunction