diff options
-rw-r--r-- | .config/VSCodium/User/settings.json | 6 | ||||
-rw-r--r-- | .config/fish/config.fish | 3 | ||||
-rw-r--r-- | .spacemacs | 1 |
3 files changed, 8 insertions, 2 deletions
diff --git a/.config/VSCodium/User/settings.json b/.config/VSCodium/User/settings.json index fc9e39c..8128f93 100644 --- a/.config/VSCodium/User/settings.json +++ b/.config/VSCodium/User/settings.json @@ -51,7 +51,7 @@ "update.mode": "none", "update.showReleaseNotes": false, "window.menuBarVisibility": "toggle", - "workbench.colorTheme": "Dark-Dracula", + "workbench.colorTheme": "Dracula", "workbench.enableExperiments": false, "workbench.iconTheme": "material-icon-theme", "workbench.settings.enableNaturalLanguageSearch": false, @@ -69,5 +69,7 @@ "rust-client.engine": "rust-analyzer", "rust-analyzer.updates.channel": "nightly", "python.formatting.provider": "black", - "python.pythonPath": "/usr/bin/python3" + "python.pythonPath": "/usr/bin/python3", + "shellcheck.executablePath": "/usr/bin/shellcheck", + "git.enableStatusBarSync": false } diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 80c5ddc..9c470de 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -123,6 +123,9 @@ set -x BOOT_CLOJURE_NAME org.clojure/clojure set -x BOOT_VERSION 2.8.3 set -x BOOT_CLOJURE_VERSION 1.8.0 +# ocaml +source $HOME/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true + # shadowgate mud over ssl function shadowgate command shadowgate socat TCP-LISTEN 8080,fork,reuseaddr OPENSSL shadowgate.org 8443 diff --git a/.spacemacs b/.spacemacs index 800f5c0..bdd153a 100644 --- a/.spacemacs +++ b/.spacemacs @@ -36,6 +36,7 @@ This function should only modify configuration layer settings." asciidoc c-c++ d + (elixir :variables elixir-backend 'lsp elixir-ls-path "$HOME/.emacs.opt/elixir-ls") go html markdown |