Skip to content

Commit

Permalink
nushell: set vi insert/normal to line/block
Browse files Browse the repository at this point in the history
Just like in emacs evil-mode
  • Loading branch information
Atemu committed May 6, 2024
1 parent f1e9c67 commit abef415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .config/nushell/config.nu
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ $env.config = {

cursor_shape: {
emacs: line # block, underscore, line, blink_block, blink_underscore, blink_line, inherit to skip setting cursor shape (line is the default)
vi_insert: block # block, underscore, line, blink_block, blink_underscore, blink_line, inherit to skip setting cursor shape (block is the default)
vi_normal: underscore # block, underscore, line, blink_block, blink_underscore, blink_line, inherit to skip setting cursor shape (underscore is the default)
vi_insert: line # block, underscore, line, blink_block, blink_underscore, blink_line, inherit to skip setting cursor shape (block is the default)
vi_normal: block # block, underscore, line, blink_block, blink_underscore, blink_line, inherit to skip setting cursor shape (underscore is the default)
}

color_config: $dark_theme # if you want a more interesting theme, you can replace the empty record with `$dark_theme`, `$light_theme` or another custom record
Expand Down

0 comments on commit abef415

Please sign in to comment.