feat: add new module for VimScript configuration

This commit is contained in:
2024-11-24 03:20:18 -05:00
parent 9ca8c4da09
commit 55931aa562
2 changed files with 15 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
-- ╭─────────────────────────────────────────────────────────╮
-- │ VimScript │
-- ╰─────────────────────────────────────────────────────────╯
local M = {}
M.setup = function()
-- Setup vimscript options
vim.cmd([[
" Vimscript options here
]])
end
return M