From 3f0890a50a76f22049c598ee4b3bdce395427a48 Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Sun, 3 Apr 2022 18:29:20 -0500 Subject: [PATCH] Add initial helix configs --- bombadil.toml | 3 +++ helix/config.toml | 1 + helix/themes/sonokai.toml | 21 +++++++++++++++++++++ zshenv | 1 + 4 files changed, 26 insertions(+) create mode 100644 helix/config.toml create mode 100644 helix/themes/sonokai.toml diff --git a/bombadil.toml b/bombadil.toml index b570939..0d26c05 100644 --- a/bombadil.toml +++ b/bombadil.toml @@ -28,6 +28,9 @@ zshrc = { source = "zshrc", target = ".zshrc" } nvim = { source = "nvim", target = ".config/nvim" } vimrc = { source = "vimrc", target = ".vimrc" } +# helix +helix = { source = "helix", target = ".config/helix" } + # tmux tmux = { source = "tmux", target = ".config/tmux" } tmux_conf = { source = "tmux.conf", target = ".tmux.conf" } diff --git a/helix/config.toml b/helix/config.toml new file mode 100644 index 0000000..02d9525 --- /dev/null +++ b/helix/config.toml @@ -0,0 +1 @@ +theme = "monokai_pro_spectrum" \ No newline at end of file diff --git a/helix/themes/sonokai.toml b/helix/themes/sonokai.toml new file mode 100644 index 0000000..16af5b7 --- /dev/null +++ b/helix/themes/sonokai.toml @@ -0,0 +1,21 @@ +ui.text = "white" +ui.background = "black" +ui.selection = "green" + +[palette] +black = "#181819" +white = "#e2e2e3" +red = "#fc5d7c" +green = "#9ed072" +yellow = "#e7c664" +blue = "#76cce0" +magenta = "#b39df3" +cyan = "#f39660" +gray = "#2c2e34" +light-red = "#fc5d7c" +light-green = "#9ed072" +light-yellow = "#e7c664" +light-blue = "#76cce0" +light-magenta = "#b39df3" +light-cyan = "#f39660" +light-gray = "#d2d2d3" diff --git a/zshenv b/zshenv index e8b94eb..4650177 100644 --- a/zshenv +++ b/zshenv @@ -2,6 +2,7 @@ export EDITOR="nvim" export GPG_TTY=$(tty) export NVM_DIR="$HOME/.nvm" export DOCKER_HOST="unix://$XDG_RUNTIME_DIR/docker.sock" +export HELIX_RUNTIME="$HOME/src/helix/runtime" fpath+=(~/.zsh/completions)