mirror of
https://github.com/He4eT/dotfiles.git
synced 2026-08-02 22:25:01 +00:00
nvim: default indentation
This commit is contained in:
parent
cf3072ef1e
commit
c3bfa5f11a
1 changed files with 6 additions and 0 deletions
|
|
@ -38,6 +38,12 @@ npx @johnnymorganz/stylua-bin ./init.lua
|
||||||
-- Enable faster startup by caching compiled Lua modules
|
-- Enable faster startup by caching compiled Lua modules
|
||||||
vim.loader.enable()
|
vim.loader.enable()
|
||||||
|
|
||||||
|
-- Indentation
|
||||||
|
vim.o.expandtab = true
|
||||||
|
vim.o.tabstop = 2
|
||||||
|
vim.o.shiftwidth = 2
|
||||||
|
vim.o.softtabstop = 2
|
||||||
|
|
||||||
-- Raise a dialog asking if you wish to save the current file(s)
|
-- Raise a dialog asking if you wish to save the current file(s)
|
||||||
vim.o.confirm = true
|
vim.o.confirm = true
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue