aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--helix.toml27
2 files changed, 29 insertions, 1 deletions
diff --git a/README.md b/README.md
index dd8d81d..23eaa80 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,8 @@ git clone git@github.com:mitjafelicijan/dotfiles.git ~/.dotfiles
9Then create symbolic links to actual config files. 9Then create symbolic links to actual config files.
10 10
11```sh 11```sh
12ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
12ln -s ~/.dotfiles/emacs.el ~/.config/emacs/init.el 13ln -s ~/.dotfiles/emacs.el ~/.config/emacs/init.el
14ln -s ~/.dotfiles/helix.toml ~/.config/helix/config.toml
13ln -s ~/.dotfiles/vimrc ~/.vimrc 15ln -s ~/.dotfiles/vimrc ~/.vimrc
14ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
15``` 16```
diff --git a/helix.toml b/helix.toml
new file mode 100644
index 0000000..e22970d
--- /dev/null
+++ b/helix.toml
@@ -0,0 +1,27 @@
1theme = "jellybeans"
2
3[editor]
4line-number = "relative"
5color-modes = true
6true-color = true
7scrolloff = 10
8idle-timeout = 1000
9mouse = false
10middle-click-paste = true
11
12[editor.cursor-shape]
13insert = "bar"
14
15[editor.lsp]
16display-messages = true
17display-inlay-hints = false
18auto-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" ]