Files
nvim/lua/vim-options.lua
2025-12-14 20:45:53 -05:00

14 lines
250 B
Lua

-- Setting the tabs spaces.
vim.cmd("set expandtab")
vim.cmd("set tabstop=4")
vim.cmd("set softtabstop=4")
vim.cmd("set shiftwidth=4")
vim.g.mapleader = " "
vim.opt.number = true
vim.filetype.add({
extension = {
shader = "hlsl"
}
})