Compare commits

...

10 Commits

Author SHA1 Message Date
d689111ac3 Set default line ending to LF 2025-03-03 23:56:52 +01:00
565ed55cdc Remove copilot 2025-01-04 19:03:52 +01:00
1afd0ba68c Update to 25.1 2025-01-04 02:16:02 +01:00
2f8987983c Enable true color, always 2024-08-16 23:16:08 +02:00
158e438c9c Add copilot 2024-06-10 09:44:12 +02:00
6bf88e014d Add delete to end of line 2024-05-21 16:47:16 +02:00
9e2bca8eca Custom gas grammar 2024-05-13 14:59:16 +02:00
5b5114f457 Disable auto header insertion for clangd 2024-04-27 00:13:10 +02:00
b08168f27f Add cursorline 2024-04-25 10:51:24 +02:00
72e16867e4 Treat inc files as cpp 2024-04-21 23:58:42 +02:00
3 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
runtime/

View File

@ -7,6 +7,10 @@ completion-replace = true
rulers = [80]
color-modes = true
auto-pairs = false
cursorline = true
true-color = true
end-of-line-diagnostics = "hint"
default-line-ending = "lf"
[editor.statusline]
left = ["mode", "file-name", "read-only-indicator", "file-modification-indicator", "version-control"]
@ -28,3 +32,6 @@ render = true
[editor.smart-tab]
enable = false
[editor.inline-diagnostics]
cursor-line = "error"

View File

@ -5,3 +5,16 @@ indent = { unit = " ", tab-width = 4 }
[[language]]
name = "cpp"
indent = { unit = " ", tab-width = 4 }
file-types = ["cpp", "h", "hpp", "inc"]
language-servers = ["clangd"]
[[language]]
name = "gas"
indent = { unit = " ", tab-width = 4 }
[[grammar]]
name = "gas"
source = { git = "https://github.com/stevenlr/tree-sitter-gas", rev = "ea4c4d158010790140ff737b8bbe7bb06d3e8b92" }
[language-server.clangd]
args = ["-header-insertion=never"]