diff --git a/Brewfile b/Brewfile index b580e08..d0ba127 100644 --- a/Brewfile +++ b/Brewfile @@ -22,7 +22,6 @@ brew 'kubecolor' tap 'go-task/tap' brew 'go-task/tap/go-task' -brew 'helix' brew 'awscli' brew 'pv' brew 'wget' diff --git a/helix/config.toml b/helix/config.toml deleted file mode 100644 index 2f2b376..0000000 --- a/helix/config.toml +++ /dev/null @@ -1,31 +0,0 @@ -theme = "nord-night" - -[editor] -line-number = "relative" -cursorline = true -true-color = true -color-modes = true -bufferline = "multiple" -scrolloff = 5 - -[editor.lsp] -display-inlay-hints = true -auto-signature-help = false - -[editor.cursor-shape] -insert = "bar" -normal = "block" -select = "underline" - -[editor.file-picker] -hidden = false -git-ignore = true - -[editor.soft-wrap] -enable = true - -[editor.indent-guides] -render = true - -[keys.insert] -"C-s" = ":w" diff --git a/helix/install.sh b/helix/install.sh deleted file mode 100755 index dd6b255..0000000 --- a/helix/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# -# Install Helix configuration. -set -euo pipefail - -HELIX_CONFIG_DIR="${HOME}/.config/helix" -mkdir -p "${HELIX_CONFIG_DIR}" - -ln -sf "${DOTFILES}/helix/config.toml" "${HELIX_CONFIG_DIR}/config.toml" - -echo "Helix config symlinked to ${HELIX_CONFIG_DIR}/config.toml"