kickstart.nvim/lua/custom/plugins/cmp-path.lua

13 lines
232 B
Lua
Raw Normal View History

return {
2023-03-24 19:39:56 +01:00
'hrsh7th/cmp-path',
config = function()
local cmp = require 'cmp'
local config = cmp.get_config()
table.insert(config.sources, {
name = 'path',
option = {},
})
cmp.setup(config)
end,
}