added ahk support

This commit is contained in:
Dario48true 2023-11-15 17:57:18 +01:00
parent 039b5c7691
commit 2c85151e73
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,6 @@
return {
"DasGandlaf/nvim-autohotkey",
config = function ()
require("nvim-autohotkey")
end
}

View file

@ -35,6 +35,8 @@ return {
local cmp = require('cmp')
local cmp_action = lsp_zero.cmp_action()
cmp.setup.filetype({ 'autohotkey' }, {sources = { { name = 'autohotkey' } },})
cmp.setup({
sources = {
{name = 'nvim_lsp'},