old configuration

This commit is contained in:
CJSatnarine
2025-12-14 20:45:53 -05:00
commit c8b2f86499
25 changed files with 958 additions and 0 deletions

13
lua/vim-options.lua Normal file
View File

@@ -0,0 +1,13 @@
-- 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"
}
})