mirror of
https://gitlab.com/EternalWanderer/voidcruiser.nl
synced 2024-11-28 20:03:50 +01:00
More vim stuff and rename
This commit is contained in:
parent
18b5126a32
commit
9ae74b7140
|
@ -15,9 +15,9 @@ These are a few bindings that I don't feel require an extensive explanation.
|
|||
|
||||
| binding | action |
|
||||
| --- | --- |
|
||||
| Z Z | write and quit; equivalent to :wq |
|
||||
| Z Q | quit; equivalent to :q! |
|
||||
| :x | write and quit; equivalent to :wq |
|
||||
| Z Z | write and quit; equivalent to `:wq` |
|
||||
| Z Q | quit; equivalent to `:q!` |
|
||||
| :x | write and quit; equivalent to `:wq` |
|
||||
| g u | swap characters to lower case |
|
||||
| g u u | swap characters to lower case on current line |
|
||||
| g U | swap characters to upper case |
|
||||
|
@ -30,6 +30,7 @@ These are a few bindings that I don't feel require an extensive explanation.
|
|||
| z = | open spelling suggestions based on current dictionary and highlighted word |
|
||||
| . | repeat last modify operation |
|
||||
| ; | repeat last move operation |
|
||||
| ! | start command with `:<selection>!` |
|
||||
|
||||
## Splits and Terminals
|
||||
You can split your vim window with somewhat Emacs-like chords by default; I don't bother changing them because I use with quite a few different computers, not all of which have my Vim dotfiles installed.
|
||||
|
@ -91,7 +92,7 @@ set ignorecase
|
|||
set smartcase
|
||||
set number
|
||||
set relativenumber
|
||||
set wildmeny
|
||||
set wildmenu
|
||||
set mouse=
|
||||
set scrolloff=3
|
||||
set listchars=tab:│\ ,lead:·,trail:·,eol:¬ "'lead' is a NeoVim specific option
|
||||
|
|
Loading…
Reference in a new issue