diff --git a/README.md b/README.md index dd8d81d68e69ad49253fe671c001431f1d46ba19..23eaa80ef48d15407897e4824251561bab531a78 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ Then create symbolic links to actual config files. ```sh +ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh ln -s ~/.dotfiles/emacs.el ~/.config/emacs/init.el +ln -s ~/.dotfiles/helix.toml ~/.config/helix/config.toml ln -s ~/.dotfiles/vimrc ~/.vimrc -ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh ``` diff --git a/helix.toml b/helix.toml new file mode 100644 index 0000000000000000000000000000000000000000..e22970d9ff6ed4137b1fdc823b1624d3d66467d8 --- /dev/null +++ b/helix.toml @@ -0,0 +1,27 @@ +theme = "jellybeans" + +[editor] +line-number = "relative" +color-modes = true +true-color = true +scrolloff = 10 +idle-timeout = 1000 +mouse = false +middle-click-paste = true + +[editor.cursor-shape] +insert = "bar" + +[editor.lsp] +display-messages = true +display-inlay-hints = false +auto-signature-help = false + +[keys.normal] +"esc" = [ "collapse_selection", "keep_primary_selection" ] +"{" = [ "goto_prev_paragraph" ] +"}" = [ "goto_next_paragraph" ] + +[keys.select] +"{" = [ "goto_prev_paragraph" ] +"}" = [ "goto_next_paragraph" ]