Well, I guess I'm using Neovim now.

Window panes and terminal buffers are kind of nice. Almost entirely
replaces my need for tmux.
This commit is contained in:
Jordan Bancino 2024-03-16 10:51:44 -04:00
parent c60d6fe41f
commit f67b62fdf0
Signed by: jordan
SSH key fingerprint: SHA256:lRUOrki6+e1vo47tj4BoyALNvOhW/yGXq08lqmaNvkw
4 changed files with 10 additions and 6 deletions

View file

@ -7,7 +7,7 @@ alias exit='clear; exit'
alias arsync="rsync --delete -av" alias arsync="rsync --delete -av"
alias tmux="tmux -2" alias tmux="tmux -2"
alias vi="vim" alias vi="nvim"
calc() { calc() {
perl -e "print($*);" perl -e "print($*);"

2
.ashrc
View file

@ -15,7 +15,7 @@ is_ssh() {
cd "$HOME" cd "$HOME"
# Signal to some programs that vi is the editor that should be launched. # Signal to some programs that vi is the editor that should be launched.
export EDITOR=vim export EDITOR=nvim
# Set shell keybindings to vi # Set shell keybindings to vi
set -o vi set -o vi

View file

@ -8,10 +8,9 @@ set expandtab
set showmatch set showmatch
set exrc set exrc
" Supported only by vim. If running a non-vim vi, remove all comments " vim-specific options
" and everything below this line.
set compatible " Be compatible with vi. "set compatible " Be compatible with vi (not supported in nvim)
set fileformat=unix set fileformat=unix
set encoding=UTF-8 set encoding=UTF-8
@ -27,3 +26,8 @@ set smartcase
set showcmd set showcmd
set showmode set showmode
" nvim-specific options
set mouse= " Disable mouse support

View file

@ -52,5 +52,5 @@ apk add libreoffice musescore neochat qt5-qtlocation nextcloud-client \
apk add hunspell hunspell-en hunspell-en-us apk add hunspell hunspell-en hunspell-en-us
# Development # Development
apk add git less make gcc musl-dev openssl-dev mandoc man-pages apk add neovim pandoc git less make gcc musl-dev openssl-dev mandoc man-pages
``` ```