chore(home): cleanup modules
Some checks failed
Continuous Integration / Checks (push) Has been cancelled
Some checks failed
Continuous Integration / Checks (push) Has been cancelled
This commit is contained in:
parent
5ec7575655
commit
532612a5a6
27 changed files with 272 additions and 1238 deletions
12
home/helix/config/config.toml
Normal file
12
home/helix/config/config.toml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
theme = "solarized_light"
|
||||
|
||||
[editor]
|
||||
line-number = "relative"
|
||||
mouse = true
|
||||
auto-completion = true
|
||||
|
||||
[editor.soft-wrap]
|
||||
enable = true
|
||||
|
||||
[keys.normal]
|
||||
C-q = [ ":reflow 80" ]
|
||||
35
home/helix/config/languages.toml
Normal file
35
home/helix/config/languages.toml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
[language-server.rust-analyzer]
|
||||
config = { rust-analyzer = { checkOnSave = { command = "clippy" }, procMacro.enable = true } }
|
||||
|
||||
[language-server.nixd]
|
||||
command = "nixd"
|
||||
|
||||
[language-server.ltex-ls]
|
||||
command = "ltex-ls"
|
||||
|
||||
[language-server.zk]
|
||||
command = "zk"
|
||||
args = ["lsp"]
|
||||
|
||||
[[language]]
|
||||
name = "rust"
|
||||
language-servers = [ {name="rust-analyzer"} ]
|
||||
|
||||
[[language]]
|
||||
name = "latex"
|
||||
language-servers = [{ name = "ltex-ls" }]
|
||||
file-types = ["tex"]
|
||||
scope = "source.latex"
|
||||
roots = []
|
||||
|
||||
[[language]]
|
||||
name = "nix"
|
||||
file-types = ["nix"]
|
||||
language-servers = [{ name = "nixd" }]
|
||||
|
||||
[[language]]
|
||||
name = "markdown"
|
||||
scope = "source.md"
|
||||
injection-regex = "md|markdown"
|
||||
file-types = ["md", "markdown"]
|
||||
roots = [".zk"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue