diff options
| 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) | |
| tree | bfd76083e3430ea7e3f8fa95c8ef94e18fe0c779 | |
| parent | d245ed1d92c63880a93ecf5329c740e844b0c914 (diff) | |
| download | dotfiles-af4d27c2ee27d899ef4db2f8c1875f9b604a8517.tar.gz | |
Added helix config
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | helix.toml | 27 |
2 files changed, 29 insertions, 1 deletions
| @@ -9,7 +9,8 @@ git clone git@github.com:mitjafelicijan/dotfiles.git ~/.dotfiles | |||
| 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 new file mode 100644 index 0000000..e22970d --- /dev/null +++ b/helix.toml | |||
| @@ -0,0 +1,27 @@ | |||
| 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" ] | ||
