feat: добавлены hotkeys для перехода между файлами и дебаггингом, добавлен конфиг для работы с локальным конфигом prettier для веб проектов, плюс добавлены сеттинг подсказек при нажатии на tab
This commit is contained in:
parent
b8653f6ed4
commit
148096e607
10 changed files with 304 additions and 128 deletions
26
lua/custom/plugins/ui.lua
Normal file
26
lua/custom/plugins/ui.lua
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
{ 'folke/snacks.nvim', opts = { image = { enabled = true } } },
|
||||
{
|
||||
'nvim-neo-tree/neo-tree.nvim',
|
||||
branch = 'v3.x',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'MunifTanjim/nui.nvim',
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
},
|
||||
git_status = {
|
||||
enabled = false, -- <--- вот это
|
||||
},
|
||||
opts = {
|
||||
window = {
|
||||
mappings = {
|
||||
['P'] = {
|
||||
'toggle_preview',
|
||||
config = { use_float = true, use_snacks_image = true, use_image_nvim = true },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
lazy = false,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue