Import vim indent settings
This commit is contained in:
parent
0a7a05a435
commit
6ecde9bda1
1
init.lua
1
init.lua
|
@ -1 +1,2 @@
|
||||||
require("core.mappings")
|
require("core.mappings")
|
||||||
|
require("core.settings")
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue