Dotfiles_nvim/lua/core/editor.lua

9 lines
175 B
Lua
Raw Normal View History

2024-07-02 21:52:43 +00:00
-- Use 2 Spaces Instead of Tabs --
vim.opt.expandtab = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
-- Enable Line Number --
vim.opt.number = true