diff options
| author | 2025-04-21 20:21:46 +0300 | |
|---|---|---|
| committer | 2025-04-21 20:21:46 +0300 | |
| commit | 0aeec225539cc6b74736106223a21da9635d240c (patch) | |
| tree | a71a228e1ee556b295facc6bc0bd09fcf1acf6db /nvim/lua/plugins | |
| parent | Привёл nvim к достаточному состоянию (diff) | |
| download | dotfiles-0aeec225539cc6b74736106223a21da9635d240c.tar.gz dotfiles-0aeec225539cc6b74736106223a21da9635d240c.tar.bz2 dotfiles-0aeec225539cc6b74736106223a21da9635d240c.tar.xz dotfiles-0aeec225539cc6b74736106223a21da9635d240c.zip | |
Быстрый выход
Diffstat (limited to 'nvim/lua/plugins')
| -rw-r--r-- | nvim/lua/plugins/telescope.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua index 02bc40c..9595d51 100644 --- a/nvim/lua/plugins/telescope.lua +++ b/nvim/lua/plugins/telescope.lua @@ -1,10 +1,10 @@ -require('telescope').setup{ +require("telescope").setup({ pickers = { buffers = { - initial_mode = 'normal' - } + initial_mode = "normal", + }, }, defaults = { - file_ignore_patterns = {"vendor", "node_modules"} - } -} + file_ignore_patterns = { "vendor", "node_modules" }, + }, +}) |
