mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
Update nvim
This commit is contained in:
parent
a01c2ab92c
commit
093639a28a
24 changed files with 102 additions and 119 deletions
13
config/nvim/lua/plug/telescope.lua
Normal file
13
config/nvim/lua/plug/telescope.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
local actions = require('telescope.actions')
|
||||
|
||||
require('telescope').setup{
|
||||
defaults = {
|
||||
prompt_prefix = "Search > ",
|
||||
selection_caret = " ",
|
||||
entry_prefix = " ",
|
||||
file_ignore_patterns = {"node_modules", "env", ".cache"},
|
||||
mappings = {
|
||||
i = {["<esc>"] = actions.close}
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue