add config for micro text edtior
This commit is contained in:
parent
0b6d1d2e4b
commit
4ab290cf14
|
@ -26,6 +26,9 @@ ln -s $PATH_PREFIX/fzf.zsh ~/.fzf.zsh
|
||||||
rm -r ~/.config/lf
|
rm -r ~/.config/lf
|
||||||
ln -s $PATH_PREFIX/config/lf ~/.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
|
# get tmux plugin manager going if needed
|
||||||
if ! ( [ -d ~/.tmux -a -d ~/.tmux/plugins -a -d ~/.tmux/plugins/tpm ] ); then
|
if ! ( [ -d ~/.tmux -a -d ~/.tmux/plugins -a -d ~/.tmux/plugins/tpm ] ); then
|
||||||
mkdir -p ~/.tmux/plugins/tpm
|
mkdir -p ~/.tmux/plugins/tpm
|
||||||
|
|
11
config/micro/bindings.json
Normal file
11
config/micro/bindings.json
Normal 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"
|
||||||
|
}
|
BIN
config/micro/buffers/history
Normal file
BIN
config/micro/buffers/history
Normal file
Binary file not shown.
9
config/micro/settings.json
Normal file
9
config/micro/settings.json
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"colorscheme": "atom-dark",
|
||||||
|
"hlsearch": true,
|
||||||
|
"hltaberrors": true,
|
||||||
|
"keymenu": true,
|
||||||
|
"scrollbar": true,
|
||||||
|
"softwrap": true,
|
||||||
|
"wordwrap": true
|
||||||
|
}
|
Loading…
Reference in a new issue