Skip to content

Commit

Permalink
feat(ui): add dressing.nvim
Browse files Browse the repository at this point in the history
* setup noice to use dressing.nvim

* add and setup inc-rename.nvim to use dressing.nvim

* remove telescope-ui-select

* update lazy-lock.json
  • Loading branch information
n3wborn committed Nov 2, 2023
1 parent 594a9f6 commit e69373f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
3 changes: 2 additions & 1 deletion lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
"cmp-under-comparator": { "branch": "master", "commit": "6857f10272c3cfe930cece2afa2406e1385bfef8" },
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
"conform.nvim": { "branch": "master", "commit": "2c1e852fbf723b7d89b14fd28089472d92edeeb9" },
"dressing.nvim": { "branch": "master", "commit": "1f2d1206a03bd3add8aedf6251e4534611de577f" },
"friendly-snippets": { "branch": "main", "commit": "43727c2ff84240e55d4069ec3e6158d74cb534b6" },
"git-conflict.nvim": { "branch": "main", "commit": "896261933afe2fddf6fb043d9cd4d88301b151a9" },
"gitsigns.nvim": { "branch": "main", "commit": "af0f583cd35286dd6f0e3ed52622728703237e50" },
"inc-rename.nvim": { "branch": "main", "commit": "ed0f6f2b917cac4eb3259f907da0a481b27a3b7e" },
"indent-blankline.nvim": { "branch": "master", "commit": "29be0919b91fb59eca9e90690d76014233392bef" },
"lazy.nvim": { "branch": "main", "commit": "16603c6917435d8446f7357cb61095138a417085" },
"lazygit.nvim": { "branch": "main", "commit": "de35012036d43bca03628d40d083f7c02a4cda3f" },
Expand Down Expand Up @@ -43,7 +45,6 @@
"plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" },
"schemastore.nvim": { "branch": "main", "commit": "98afa085f8bee6a7d4ffb1b025248e4d0555a14b" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
"telescope-ui-select.nvim": { "branch": "master", "commit": "b0015e6e4b46a64192c64b68dec9a9ac5a4e5690" },
"telescope.nvim": { "branch": "master", "commit": "7011eaae0ac1afe036e30c95cf80200b8dc3f21a" },
"todo-comments.nvim": { "branch": "main", "commit": "4a6737a8d70fe1ac55c64dfa47fcb189ca431872" },
"trouble.nvim": { "branch": "main", "commit": "f1168feada93c0154ede4d1fe9183bf69bac54ea" },
Expand Down
4 changes: 4 additions & 0 deletions lua/plugins/dressing.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
return {
'stevearc/dressing.nvim',
opts = {},
}
6 changes: 6 additions & 0 deletions lua/plugins/inc_rename.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
return {
'smjonas/inc-rename.nvim',
opts = {
input_buffer_type = 'dressing',
},
}
2 changes: 1 addition & 1 deletion lua/plugins/noice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ return {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
long_message_to_split = true, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim
inc_rename = true, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = true, -- add a border to hover docs and signature help
},
})
Expand Down
6 changes: 0 additions & 6 deletions lua/plugins/telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@ return {
require('telescope').load_extension('fzf')
end,
},
{
'nvim-telescope/telescope-ui-select.nvim',
config = function()
require('telescope').load_extension('ui-select')
end,
},
{
'kdheepak/lazygit.nvim',
event = { 'VeryLazy' },
Expand Down

0 comments on commit e69373f

Please sign in to comment.