diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-20 23:51:53 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-20 23:51:53 +0100 |
commit | 87800112f1601e812a048e6435c8ef560a4b1823 (patch) | |
tree | 675c8317dc505af233f07246e17b21a31a1a8501 /lua/no-clown-fiesta | |
parent | 22705b451b06222123998951890771d7e9b8df3d (diff) |
Add Telescope to init
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/init.lua b/lua/no-clown-fiesta/init.lua index b34bbae..fecf0bb 100644 --- a/lua/no-clown-fiesta/init.lua +++ b/lua/no-clown-fiesta/init.lua @@ -17,6 +17,7 @@ local LSP = require("no-clown-fiesta.LSP") local markdown = require("no-clown-fiesta.markdown") local NvimTree = require("no-clown-fiesta.NvimTree") local StatusLine = require("no-clown-fiesta.StatusLine") +local Telescope = require("no-clown-fiesta.Telescope") local Treesitter = require("no-clown-fiesta.Treesitter") local Whichkey = require("no-clown-fiesta.Whichkey") @@ -28,6 +29,7 @@ local skeletons = { NvimTree, LSP, StatusLine, + Telescope, Treesitter, Whichkey, } |