lua format

This commit is contained in:
2022-03-16 22:56:51 +01:00
parent 4c543d7f44
commit c3deaa45c6
17 changed files with 343 additions and 325 deletions

View File

@@ -4,19 +4,19 @@ local mappingTab = {
i = {
['<cr>'] = actions.select_tab,
['<C-b>'] = actions.select_default,
}
},
}
require('telescope').setup {
require('telescope').setup({
defaults = {
mappings = {
i = {
['<esc>'] = actions.close,
['<cr>'] = actions.select_default + actions.center,
['<C-l>'] = actions.send_selected_to_loclist,
['<C-q>'] = actions.smart_send_to_qflist
}
}
['<C-q>'] = actions.smart_send_to_qflist,
},
},
},
pickers = {
-- Your special builtin config goes in here
@@ -30,8 +30,8 @@ require('telescope').setup {
},
n = {
['<c-w>'] = actions.delete_buffer,
}
}
},
},
},
find_files = {
theme = 'ivy',
@@ -44,9 +44,8 @@ require('telescope').setup {
theme = 'ivy',
previewer = false,
},
lsp_dynamic_workspace_symbols = {
},
}
}
lsp_dynamic_workspace_symbols = {},
},
})
require('telescope').load_extension('fzf')