1
Fork 0

Move neovim dotfiles

This commit is contained in:
Matei Adriel 2023-12-02 00:59:18 +01:00
commit a5eae4da13
No known key found for this signature in database
78 changed files with 3 additions and 5 deletions
home/features/neovim/config/lua/my

View file

@ -0,0 +1,10 @@
local M = {}
function M.setup()
-- Import my other files
require("my.options").setup()
require("my.keymaps").setup()
require("my.lazy").setup()
end
return M