Dotfiles/.config/nvim/lua/core/editor.lua

9 lines
175 B
Lua
Raw Normal View History

2024-05-13 18:43:31 +00:00
-- Use 2 Spaces Instead of Tabs --
2024-06-02 17:11:54 +00:00
vim.opt.expandtab = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
2024-05-13 18:43:31 +00:00
-- Enable Line Number --
2024-06-02 17:11:54 +00:00
vim.opt.number = true