feat(editorconfig): lua settings

This commit is contained in:
Artur Manuel 2025-02-15 00:40:10 +00:00
commit 946f0b0c81
Signed by: amadaluzia
SSH key fingerprint: SHA256:Zwg7gBuZyaG48ucAZneJwltiXu0+tJb7c3lYt9AYlLg
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,7 @@
[*.nix]
indent_size = 2
indent_style = space
[*.lua]
indent_size = 4
indent_style = space

View file

@ -1,3 +1,9 @@
local g = vim.g
if g.neovide then
g.neovide_cursor_trail_size = 0
g.neovide_padding_left = 8
g.neovide_padding_right = 8
g.neovide_padding_top = 8
g.neovide_padding_bottom = 8
end