fixes, new bindings for telescope with git

This commit is contained in:
Maciej Lebiest 2023-10-08 11:16:50 +02:00
parent 88f559539a
commit 291250092b
4 changed files with 54 additions and 9 deletions

View file

@ -34,7 +34,10 @@ function switch_virtual_text()
})
end
map("n", "<leader>vt", ":lua switch_virtual_text()<CR>")
map("t", "<C-r>", ":Telescope command_history<CR>")
map("c", "<C-r>", ":Telescope command_history<CR>")
map("n", "<leader>gs", ":Telescope git_status<CR>")
map("n", "<leader>gc", ":Telescope git_commits<CR>")
map("n", "<leader>gb", ":Telescope git_branches<CR>")
-- tab lines in normal and visual mode
map("n", "<Tab>", ">>")

View file

@ -114,7 +114,8 @@ require("lazy").setup({
{ 'stephpy/vim-yaml' }, -- for proper sls syntax highlighting when jinja
{
'lukas-reineke/indent-blankline.nvim',
opts = require('plugins.indent-blankline').config
main = "ibl",
init = require('plugins.indent-blankline').init
},
{ 'MunifTanjim/nui.nvim' },
{

View file

@ -1,7 +1,30 @@
return {
config = {
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
function init()
local highlight = {
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowGreen",
"RainbowViolet",
"RainbowCyan",
}
local hooks = require "ibl.hooks"
-- create the highlight groups in the highlight setup hook, so they are reset
-- every time the colorscheme changes
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#E06C75" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#E5C07B" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#61AFEF" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#D19A66" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#98C379" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#C678DD" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
end)
require("ibl").setup { indent = { highlight = highlight } }
end
return {
init = init
}