Compare commits
No commits in common. "fc5d55d182c75b4ffdcd9b66ee920a6f56b60499" and "c03a3f391340e9e2660702b59b5707925149c521" have entirely different histories.
fc5d55d182
...
c03a3f3913
|
@ -54,22 +54,6 @@ local keymaps = {
|
||||||
cmd = '<gv',
|
cmd = '<gv',
|
||||||
desc = "Shift selection in visual right"
|
desc = "Shift selection in visual right"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
mode = { 'i' },
|
|
||||||
keys = '<tab>',
|
|
||||||
cmd = function()
|
|
||||||
vim.cmd(':>')
|
|
||||||
end,
|
|
||||||
desc = "Shift selection in visual mode right"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
mode = { 'i' },
|
|
||||||
keys = '<S-tab>',
|
|
||||||
cmd = function()
|
|
||||||
vim.cmd(':<')
|
|
||||||
end,
|
|
||||||
desc = "Shift selection in visual right"
|
|
||||||
},
|
|
||||||
--
|
--
|
||||||
-- Window controls
|
-- Window controls
|
||||||
-- ..............................................
|
-- ..............................................
|
||||||
|
@ -104,7 +88,7 @@ local keymaps = {
|
||||||
|
|
||||||
if buf_type == '' then
|
if buf_type == '' then
|
||||||
-- check if buffer is in ignore
|
-- check if buffer is in ignore
|
||||||
local in_ignore = false
|
in_ignore = false
|
||||||
for _, v in ipairs(ignore) do
|
for _, v in ipairs(ignore) do
|
||||||
if v == file_type then
|
if v == file_type then
|
||||||
in_ignore = true
|
in_ignore = true
|
||||||
|
@ -171,17 +155,6 @@ local keymaps = {
|
||||||
vim.lsp.buf.format()
|
vim.lsp.buf.format()
|
||||||
end,
|
end,
|
||||||
desc = "Format buffer with current LSP"
|
desc = "Format buffer with current LSP"
|
||||||
},
|
|
||||||
--
|
|
||||||
-- Telescope
|
|
||||||
-- ..............................................
|
|
||||||
{
|
|
||||||
mode = { 'n', 'i', 'v' },
|
|
||||||
keys = '<C-g>',
|
|
||||||
cmd = function()
|
|
||||||
vim.cmd('Telescope')
|
|
||||||
end,
|
|
||||||
desc = "Open Telescope"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
--
|
--
|
||||||
-- ==============================================
|
-- ==============================================
|
||||||
|
|
||||||
local ui = require 'config.ui'
|
ui = require 'config.ui'
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,8 +37,8 @@ return {
|
||||||
up = '<C-up>',
|
up = '<C-up>',
|
||||||
|
|
||||||
-- Move current line in Normal mode
|
-- Move current line in Normal mode
|
||||||
line_left = nil,
|
line_left = '<S-tab>',
|
||||||
line_right = nil,
|
line_right = '<tab>',
|
||||||
line_down = '<C-down>',
|
line_down = '<C-down>',
|
||||||
line_up = '<C-up>',
|
line_up = '<C-up>',
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
return {
|
|
||||||
{
|
|
||||||
'nvim-telescope/telescope.nvim',
|
|
||||||
branch = '0.1.x',
|
|
||||||
dependencies = { 'nvim-lua/plenary.nvim', 'nvim-tree/nvim-web-devicons' }
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue