diff options
author | Gokul Soumya | 2021-11-29 05:39:04 +0000 |
---|---|---|
committer | Gokul Soumya | 2021-11-29 05:39:04 +0000 |
commit | 058796c18e786309322731ff68b15a0f3901b60b (patch) | |
tree | 241112be83b4a16dcaed22e73898d104b538ffbf /book/src | |
parent | 17473b51d37001d4966b82d83d61d3e695e8403d (diff) |
Change default cursors to block for all modes
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/configuration.md | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index a40a8959..2998bcdc 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -15,8 +15,9 @@ line-number = "relative" mouse = false [editor.cursor-shape] -normal = "underline" -insert = "block" +insert = "bar" +normal = "block" +select = "underline" [editor.file-picker] hidden = false @@ -46,11 +47,11 @@ hidden = false Defines the shape of cursor in each mode. Note that due to limitations of the terminal environment, only the primary cursor can change shape. -| Key | Description | Default | -| --- | ----------- | -------- | -| `normal` | Cursor shape in [normal mode][normal mode] | `block` | -| `insert` | Cursor shape in [insert mode][insert mode] | `bar` | -| `select` | Cursor shape in [select mode][select mode] | `underline` | +| Key | Description | Default | +| --- | ----------- | ------- | +| `normal` | Cursor shape in [normal mode][normal mode] | `block` | +| `insert` | Cursor shape in [insert mode][insert mode] | `block` | +| `select` | Cursor shape in [select mode][select mode] | `block` | [normal mode]: ./keymap.md#normal-mode [insert mode]: ./keymap.md#insert-mode |