docs: update Linux/vim
This commit is contained in:
parent
86f9287a0f
commit
9383e593b9
26
Linux/vim.md
26
Linux/vim.md
@ -2,7 +2,7 @@
|
|||||||
title: Vim
|
title: Vim
|
||||||
description:
|
description:
|
||||||
published: true
|
published: true
|
||||||
date: 2025-10-11T16:49:48.279Z
|
date: 2025-10-11T17:03:58.503Z
|
||||||
tags:
|
tags:
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2025-10-11T16:38:44.398Z
|
dateCreated: 2025-10-11T16:38:44.398Z
|
||||||
@ -88,3 +88,27 @@ dateCreated: 2025-10-11T16:38:44.398Z
|
|||||||
| Save | `:w` or `Ctrl+s` |
|
| Save | `:w` or `Ctrl+s` |
|
||||||
| Quit | `:q` |
|
| Quit | `:q` |
|
||||||
| Save & Quit | `:wq` |
|
| Save & Quit | `:wq` |
|
||||||
|
|
||||||
|
## settings.json
|
||||||
|
|
||||||
|
```
|
||||||
|
"vim.useSystemClipboard": true,
|
||||||
|
"vim.hlsearch": true,
|
||||||
|
"vim.ignorecase": true,
|
||||||
|
"vim.smartcase": true,
|
||||||
|
"vim.cursorStylePerMode.insert": "line",
|
||||||
|
"vim.insertModeKeyBindings": [],
|
||||||
|
"vim.leader": " ",
|
||||||
|
"vim.normalModeKeyBindingsNonRecursive": [
|
||||||
|
// Easier access to { and }
|
||||||
|
{ "before": ["å"], "after": ["{"] },
|
||||||
|
{ "before": ["¨"], "after": ["}"] },
|
||||||
|
|
||||||
|
// Easier access to [ and ]
|
||||||
|
{ "before": ["ö"], "after": ["["] },
|
||||||
|
{ "before": ["ä"], "after": ["]"] },
|
||||||
|
|
||||||
|
{ "before": ["§"], "after": ["$"] },
|
||||||
|
|
||||||
|
]
|
||||||
|
```
|
||||||
Loading…
x
Reference in New Issue
Block a user