Added helix config files

This commit is contained in:
Gnarwhal 2024-07-28 17:49:55 +00:00
parent 8240741579
commit 8773306031
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
4 changed files with 70 additions and 0 deletions

14
.config/helix/config.toml Normal file
View file

@ -0,0 +1,14 @@
theme = "base16_default_extended"
[editor]
completion-timeout = 5
cursorline = true
line-number = "relative"
popup-border = "all"
[editor.indent-guides]
render = true
character = "▏"
[keys.insert]
"C-g" = "normal_mode"

View file

@ -0,0 +1,39 @@
[[language]]
name = "c"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "cpp"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "java"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "javascript"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "json"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "jsx"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "kotlin"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "typescript"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "tsx"
indent = { tab-width = 4, unit = "\t" }
[[language]]
name = "rust"
indent = { tab-width = 4, unit = "\t" }

View file

@ -0,0 +1,12 @@
inherits = "base16_default"
"ui.popup" = { bg = "black" }
"ui.menu" = { bg = "black" }
"ui.cursorline.primary" = { bg = "dark-gray" }
"ui.statusline" = { fg = "black", bg = "light-gray" }
"ui.statusline.inactive" = { fg = "black", bg = "light-gray" }
"ui.virtual.indent-guide" = { fg = "gray" }
"ui.window" = { fg = "light-gray" }
[palette]
"dark-gray" = "#0C0C0C"

View file

@ -0,0 +1,5 @@
inherits = "default"
[palette]
bossanova = "#371b49"
midnight = "#2b123c"