From 58c40f69d9886dccbbd1269f5538c2e0099bb932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sun, 5 May 2024 12:36:36 +0200 Subject: [PATCH] Add helix language configuration --- dotfiles.yml | 2 ++ helix/languages.toml | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 helix/languages.toml diff --git a/dotfiles.yml b/dotfiles.yml index aa695af..342f5f8 100644 --- a/dotfiles.yml +++ b/dotfiles.yml @@ -88,6 +88,8 @@ dotfiles: to: scripts - from: helix/config.toml to: .config/helix/config.toml + - from: helix/languages.toml + to: .config/helix/languages.toml dotfiles_remove: - .gitconfig - .vimrc diff --git a/helix/languages.toml b/helix/languages.toml new file mode 100644 index 0000000..90367ad --- /dev/null +++ b/helix/languages.toml @@ -0,0 +1,3 @@ +[[language]] +name = "bash" +indent = { unit = " " , tab-width = 4 }