|
@@ -1,3 +1,20 @@
|
|
|
+require('telescope').setup({
|
|
|
+ defaults = {
|
|
|
+ mappings = {
|
|
|
+ i = {
|
|
|
+ ['jj'] = 'close',
|
|
|
+ ['<C-j>'] = 'move_selection_next',
|
|
|
+ ['<C-k>'] = 'move_selection_previous',
|
|
|
+ },
|
|
|
+ },
|
|
|
+ layout_config = {
|
|
|
+ prompt_position = 'top',
|
|
|
+ },
|
|
|
+ sorting_strategy = 'ascending',
|
|
|
+ },
|
|
|
+})
|
|
|
+require('telescope').load_extension('fzf')
|
|
|
+
|
|
|
require('onedark').setup({
|
|
|
term_colors = false,
|
|
|
transparent = true,
|
|
@@ -59,6 +76,10 @@ vim.api.nvim_set_keymap('n', ']d', '<cmd>lua vim.diagnostic.goto_next()<CR>', op
|
|
|
vim.api.nvim_set_keymap('n', '<space>q', '<cmd>lua vim.diagnostic.setqflist({ severity = { min = vim.diagnostic.severity.WARN } })<CR>', opts)
|
|
|
|
|
|
vim.api.nvim_set_keymap('n', '<Leader>q', '<cmd>lua MiniBufremove.delete()<CR>', opts)
|
|
|
+vim.api.nvim_set_keymap('n', '<C-P>', '<cmd>Telescope find_files<CR>', opts)
|
|
|
+vim.api.nvim_set_keymap('n', '<C-O>', '<cmd>Telescope buffers<CR>', opts)
|
|
|
+vim.api.nvim_set_keymap('n', '<Leader>ff', '<cmd>Telescope live_grep<CR>', opts)
|
|
|
+vim.api.nvim_set_keymap('n', '<Leader>fs', '<cmd>Telescope lsp_document_symbols<CR>', opts)
|
|
|
|
|
|
-- Allow pressing enter to autocomplete
|
|
|
vim.api.nvim_set_keymap('i', '<CR>', 'pumvisible() ? "\\<C-y>" : "\\<CR>"', { noremap = true, expr = true })
|
|
@@ -80,7 +101,7 @@ function on_attach(client, bufnr)
|
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>D', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
|
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
|
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
|
|
|
- vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gr', '<cmd>References<CR>', opts)
|
|
|
+ vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gr', '<cmd>Telescope lsp_references<CR>', opts)
|
|
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<space>f', '<cmd>lua vim.lsp.buf.formatting()<CR>', opts)
|
|
|
end
|
|
|
|