diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua new file mode 100644 index 0000000..8d194bd --- /dev/null +++ b/lua/plugins/telescope.lua @@ -0,0 +1,12 @@ +return { + "nvim-telescope/telescope.nvim", + tag = "0.1.6", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = { + extensions = { + thesaurus = { + provider = "freedictionaryapi", + }, + }, + }, +} diff --git a/lua/plugins/thesaurus.lua b/lua/plugins/thesaurus.lua new file mode 100644 index 0000000..e75f524 --- /dev/null +++ b/lua/plugins/thesaurus.lua @@ -0,0 +1,6 @@ +return { + { + "nvim-telescope/telescope.nvim", + dependencies = { "rafi/telescope-thesaurus.nvim" }, + }, +}