mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
Merge branch 'main' into stylix
This commit is contained in:
commit
d1055552bc
60 changed files with 3863 additions and 248 deletions
|
|
@ -2,6 +2,7 @@
|
|||
clangd = { command = "clangd", args = ["--header-insertion=never"]}
|
||||
biome = { command = "biome", args = ["lsp-proxy"] }
|
||||
fish_lsp = {command = "fish-lsp", args = ["start"]}
|
||||
slangd = {command = "slangd"}
|
||||
|
||||
[[language]]
|
||||
name = "fish"
|
||||
|
|
@ -26,6 +27,33 @@ scope = "source.nix"
|
|||
auto-format = true
|
||||
formatter = { command = "alejandra", args = ["-q"] }
|
||||
|
||||
[[language]]
|
||||
name = "objc"
|
||||
scope = "source.objc"
|
||||
file-types = ["m", "mm", "M"]
|
||||
injection-regex = "objc"
|
||||
roots = ["xcodeproj"]
|
||||
comment-token = "//"
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
language-servers = [ {name = "clangd"} ]
|
||||
|
||||
[[grammar]]
|
||||
name = "objc"
|
||||
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-objc", rev = "18802acf31d0b5c1c1d50bdbc9eb0e1636cab9ed" }
|
||||
|
||||
|
||||
[[language]]
|
||||
name = "slang"
|
||||
scope = "source.slang"
|
||||
file-types = ["slang"]
|
||||
auto-format = true
|
||||
language-servers = [{name = "slangd"}]
|
||||
comment-token = "//"
|
||||
|
||||
[[grammar]]
|
||||
name = "slang"
|
||||
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-slang", rev = "3ed23c04a412a0559162d9cadf96dfff7cb36079" }
|
||||
|
||||
##################
|
||||
### BiomeJS Setup
|
||||
##################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue