From 445f30a0fc7612d334db8602e954ab54d1fe0e39 Mon Sep 17 00:00:00 2001 From: Robert Altner Date: Thu, 23 Jan 2025 10:23:56 +0100 Subject: [PATCH] add outline --- init.vim | 6 +++++- lua/keymap.lua | 2 +- lua/plugins.lua | 27 +++++++++++++++++++-------- 3 files changed, 25 insertions(+), 10 deletions(-) diff --git a/init.vim b/init.vim index b2a8d22..924da62 100644 --- a/init.vim +++ b/init.vim @@ -27,7 +27,11 @@ colorscheme kanagawa let g:blamer_enabled = 1 let g:startify_change_to_dir = 1 let g:startify_change_to_vcs_root = 1 -let g:startify_bookmarks = map(filter(globpath('/home/robert/repos', "*", 0, 1), 'isdirectory(v:val)'), {_,val -> { split(val, '/')[-1]: val}}) +let g:startify_bookmarks = map(filter(globpath('/home/robert/repos', "*", 0, 1), 'isdirectory(v:val)'), {idx,val -> { "abcdefghijklmnopqrstuvwxyz"[idx]: '/home/robert/' .. join(split(val, '/')[2:-1], '/') .. '/'}}) + +let g:ale_fixers = { +\ 'c': ['clang-format'] +\} inoremap coc#pum#visible() ? coc#pum#prev(1) : "" inoremap coc#pum#visible() ? coc#pum#next(1) : "" diff --git a/lua/keymap.lua b/lua/keymap.lua index 926a718..ce83c8f 100644 --- a/lua/keymap.lua +++ b/lua/keymap.lua @@ -11,7 +11,7 @@ map("n", "", ":NvimTreeFindFileToggle") map("n", "", ":Buffers") -map("n", "", ":TagbarToggle") +map("n", "", ":Outline") map("n", "e", ":CocList diagnostics") map("n", "", ":Telescope find_files") diff --git a/lua/plugins.lua b/lua/plugins.lua index e5b846e..494e47a 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -53,13 +53,13 @@ return { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, - { - "glacambre/firenvim", - lazy = not vim.g.started_by_firenvim, - build = function() - vim.fn["firenvim#install"](0) - end - }, + -- { + -- "glacambre/firenvim", + -- lazy = not vim.g.started_by_firenvim, + -- build = function() + -- vim.fn["firenvim#install"](0) + -- end + -- }, { "lewis6991/gitsigns.nvim", config = function() @@ -116,5 +116,16 @@ return { { "folke/todo-comments.nvim", opts = {} - } + }, + { + "hedyhli/outline.nvim", + lazy = true, + cmd = { "Outline" }, + opts = { + preview_window = { + auto_preview = true, + auto_close = true + } + } + }, }