This commit is contained in:
Robert 2024-04-23 22:50:14 +02:00
parent 9a0b795aa2
commit ff768eb635
4 changed files with 10 additions and 2 deletions

View file

@ -23,6 +23,9 @@ let g:blamer_enabled = 1
let g:startify_change_to_dir = 0
let g:startify_change_to_vcs_root = 1
inoremap <silent><expr> <UP> coc#pum#visible() ? coc#pum#prev(1) : ""
inoremap <silent><expr> <DOWN> coc#pum#visible() ? coc#pum#next(1) : ""
inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#_select_confirm() :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :

View file

@ -119,3 +119,5 @@ vim.api.nvim_create_autocmd("TermClose", {
vim.cmd("close")
end
})
require("ibl").setup()

View file

@ -39,8 +39,6 @@ map("", "<DOWN>", "<NOP>")
map("", "<RIGHT>", "<NOP>")
map("", "<LEFT>", "<NOP>")
map("i", "<UP>", "<NOP>")
map("i", "<DOWN>", "<NOP>")
map("i", "<RIGHT>", "<NOP>")
map("i", "<LEFT>", "<NOP>")

View file

@ -78,5 +78,10 @@ return {
{
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" }
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = {}
}
}