Import vim indent settings

This commit is contained in:
ekzyis 2024-04-22 13:12:54 +02:00
parent 0a7a05a435
commit 6ecde9bda1
2 changed files with 7 additions and 0 deletions

View File

@ -1 +1,2 @@
require("core.mappings") require("core.mappings")
require("core.settings")

6
lua/core/settings.lua Normal file
View File

@ -0,0 +1,6 @@
-- how many spaces large a TAB character is
vim.o.tabstop=2
-- when indenting with '>', use space width
vim.o.shiftwidth=2
-- insert spaces instead of TAB character
vim.o.expandtab=true