Added helix config

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2023-12-17 00:49:28 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2023-12-17 00:49:28 +0100
Commit af4d27c2ee27d899ef4db2f8c1875f9b604a8517 (patch)
-rw-r--r-- README.md 3
-rw-r--r-- helix.toml 27
2 files changed, 29 insertions, 1 deletions
diff --git a/README.md b/README.md
...
9
Then create symbolic links to actual config files.
9
Then create symbolic links to actual config files.
10
  
10
  
11
```sh
11
```sh
  
12
ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
12
ln -s ~/.dotfiles/emacs.el ~/.config/emacs/init.el
13
ln -s ~/.dotfiles/emacs.el ~/.config/emacs/init.el
  
14
ln -s ~/.dotfiles/helix.toml ~/.config/helix/config.toml
13
ln -s ~/.dotfiles/vimrc ~/.vimrc
15
ln -s ~/.dotfiles/vimrc ~/.vimrc
14
ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
  
15
```
16
```
diff --git a/helix.toml b/helix.toml
  
1
theme = "jellybeans"
  
2
  
  
3
[editor]
  
4
line-number = "relative"
  
5
color-modes = true
  
6
true-color = true
  
7
scrolloff = 10
  
8
idle-timeout = 1000
  
9
mouse = false
  
10
middle-click-paste = true
  
11
  
  
12
[editor.cursor-shape]
  
13
insert = "bar"
  
14
  
  
15
[editor.lsp]
  
16
display-messages = true
  
17
display-inlay-hints = false
  
18
auto-signature-help = false
  
19
  
  
20
[keys.normal]
  
21
"esc" = [ "collapse_selection", "keep_primary_selection" ]
  
22
"{" = [ "goto_prev_paragraph" ]
  
23
"}" = [ "goto_next_paragraph" ]
  
24
  
  
25
[keys.select]
  
26
"{" = [ "goto_prev_paragraph" ]
  
27
"}" = [ "goto_next_paragraph" ]