feat(editorconfig): lua settings
This commit is contained in:
parent
e10202c719
commit
946f0b0c81
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
[*.nix]
|
[*.nix]
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
|
||||||
|
[*.lua]
|
||||||
|
indent_size = 4
|
||||||
|
indent_style = space
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
local g = vim.g
|
local g = vim.g
|
||||||
|
|
||||||
g.neovide_cursor_trail_size = 0
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue