add config for micro text edtior

This commit is contained in:
kemonine 2024-08-04 08:32:21 -04:00
parent 0b6d1d2e4b
commit 4ab290cf14
4 changed files with 23 additions and 0 deletions

View file

@ -26,6 +26,9 @@ ln -s $PATH_PREFIX/fzf.zsh ~/.fzf.zsh
rm -r ~/.config/lf
ln -s $PATH_PREFIX/config/lf ~/.config/lf
rm -r ~/.config/micro
ln -s $PATH_PREFIX/config/micro ~/.config/micro
# get tmux plugin manager going if needed
if ! ( [ -d ~/.tmux -a -d ~/.tmux/plugins -a -d ~/.tmux/plugins/tpm ] ); then
mkdir -p ~/.tmux/plugins/tpm

View file

@ -0,0 +1,11 @@
{
"Alt-/": "lua:comment.comment",
"CtrlUnderscore": "lua:comment.comment",
// not supported: Ctrl-w - word wrap
"Ctrl-p" : "CommandMode",
"Ctrl-d" : "DeleteLine",
"Ctrl-ShiftA" : "StartOfLine",
"Alt-a" : "StartOfLine",
"Ctrl-ShiftE" : "EndOfLine",
"Alt-e" : "EndOfLine"
}

Binary file not shown.

View file

@ -0,0 +1,9 @@
{
"colorscheme": "atom-dark",
"hlsearch": true,
"hltaberrors": true,
"keymenu": true,
"scrollbar": true,
"softwrap": true,
"wordwrap": true
}