diff --git a/init.lua b/init.lua index 9cb6b72b..ad82d04a 100644 --- a/init.lua +++ b/init.lua @@ -498,6 +498,8 @@ vim.opt.termguicolors = true require("bufferline").setup{} require("nvim-tree").setup {} + +require("veil").setup {} -- [[ Configure nvim-cmp ]] -- See `:help cmp` local cmp = require 'cmp' diff --git a/lazy-lock.json b/lazy-lock.json index 30f249c9..e7fac641 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -21,9 +21,11 @@ "nvim-web-devicons": { "branch": "master", "commit": "45d0237c427baba8cd05e0ab26d30e2ee58c2c82" }, "onedark.nvim": { "branch": "master", "commit": "dac8c39812dae025255c9069a260e1f69d967927" }, "plenary.nvim": { "branch": "master", "commit": "9ce85b0f7dcfe5358c0be937ad23e456907d410b" }, + "telescope-file-browser.nvim": { "branch": "master", "commit": "6e51d0cd6447cf2525412220ff0a2885eef9039c" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" }, "telescope.nvim": { "branch": "0.1.x", "commit": "54930e1abfc94409e1bb9266e752ef8379008592" }, "toggleterm.nvim": { "branch": "main", "commit": "faee9d60428afc7857e0927fdc18daa6c409fa64" }, + "veil.nvim": { "branch": "main", "commit": "ec18376953b401d784756a47df38a75ece40f3e9" }, "vim-fugitive": { "branch": "master", "commit": "99db68d9b3304580bd383da7aaee05c7a954a344" }, "vim-rhubarb": { "branch": "master", "commit": "ee69335de176d9325267b0fd2597a22901d927b1" }, "vim-sleuth": { "branch": "master", "commit": "1cc4557420f215d02c4d2645a748a816c220e99b" }, diff --git a/lua/custom/plugins/veil.lua b/lua/custom/plugins/veil.lua new file mode 100644 index 00000000..389e9457 --- /dev/null +++ b/lua/custom/plugins/veil.lua @@ -0,0 +1,14 @@ +return { + 'willothy/veil.nvim', + lazy = true, + dependencies = { + -- All optional, only required for the default setup. + -- If you customize your config, these aren't necessary. + "nvim-telescope/telescope.nvim", + "nvim-lua/plenary.nvim", + "nvim-telescope/telescope-file-browser.nvim" + }, + config = true, + -- or configure with: + -- opts = { ... } +}