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:
parent
c60d6fe41f
commit
f67b62fdf0
4 changed files with 10 additions and 6 deletions
2
.aliases
2
.aliases
|
@ -7,7 +7,7 @@ alias exit='clear; exit'
|
|||
|
||||
alias arsync="rsync --delete -av"
|
||||
alias tmux="tmux -2"
|
||||
alias vi="vim"
|
||||
alias vi="nvim"
|
||||
|
||||
calc() {
|
||||
perl -e "print($*);"
|
||||
|
|
2
.ashrc
2
.ashrc
|
@ -15,7 +15,7 @@ is_ssh() {
|
|||
cd "$HOME"
|
||||
|
||||
# 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 -o vi
|
||||
|
|
|
@ -8,10 +8,9 @@ set expandtab
|
|||
set showmatch
|
||||
set exrc
|
||||
|
||||
" Supported only by vim. If running a non-vim vi, remove all comments
|
||||
" and everything below this line.
|
||||
" vim-specific options
|
||||
|
||||
set compatible " Be compatible with vi.
|
||||
"set compatible " Be compatible with vi (not supported in nvim)
|
||||
|
||||
set fileformat=unix
|
||||
set encoding=UTF-8
|
||||
|
@ -27,3 +26,8 @@ set smartcase
|
|||
|
||||
set showcmd
|
||||
set showmode
|
||||
|
||||
" nvim-specific options
|
||||
|
||||
set mouse= " Disable mouse support
|
||||
|
|
@ -52,5 +52,5 @@ apk add libreoffice musescore neochat qt5-qtlocation nextcloud-client \
|
|||
apk add hunspell hunspell-en hunspell-en-us
|
||||
|
||||
# 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
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue