summaryrefslogtreecommitdiffstats
path: root/.config/nvim/plugin/50-local.lua
blob: 88c63c5ed3ac0fda153cc0b8e939638b94671217 (plain)
1
2
3
4
5
6
7
8
--
-- local include plugin
--

local local_config_file = vim.fn.stdpath("config") .. "/local.lua"
if vim.uv.fs_stat(local_config_file) then
	dofile(local_config_file)
end