1
0
Fork 0

fix(neovim): add expandtab and respect editorconfig

We also added an editorconfig with this one in the repository
This commit is contained in:
Philipp 2025-12-04 18:06:43 +01:00
parent d187b96054
commit eed3e35fe8
Signed by: Philipp
GPG key ID: B27C3DE2FD94AFC3
3 changed files with 9 additions and 0 deletions

5
.editorconfig Normal file
View file

@ -0,0 +1,5 @@
[*]
indent_style = tab
indent_size = 2
trim_trailing_whitespaces = true
insert_final_newline = true

View file

@ -28,6 +28,7 @@ in
options = {
tabstop = 2;
shiftwidth = 2;
expandtab = false;
cursorlineopt = "screenline";
};

View file

@ -0,0 +1,3 @@
{
programs.nvf.settings.vim.editorconfig.enable = true;
}