1
Fork 0
satellite/dotfiles/neovim/lua/my/init.lua
Matei Adriel bf7427d8c7
A bunch of changes, mostly to neovim
- global abbreviations
- better firenvim setup
- magma.nvim (never used it, might unisntall)
2023-02-19 02:41:22 +01:00

12 lines
205 B
Lua

local M = {}
function M.setup()
-- Import my other files
require("my.options").setup()
require('my.keymaps').setup()
require('my.lazy').setup()
require('my.abbreviations').setup()
end
return M