My Neovim Plugins #3 — dressing.nvim

Now we are getting pretty with dressing.nvim. Which is basically making the input of code-refactor.lua look nice.

Config

return {
	"stevearc/dressing.nvim",
	dependencies = {
		"nvim-telescope/telescope.nvim",
	},
	config = function()
		require("dressing").setup({
			select = {
				telescope = require("telescope.themes").get_cursor(),
			},
		})
	end,
}

Besides improving the input of code-refactor.lua, this plugin isn't doing anything special in my setup. So I could basically remove the select config for telescope. I always thought it will improve it. 🤷


71 of #100DaysToOffload

#log #neovim

Thoughts? Discuss...