From 46edf6566d2dea7206115016af3b9925f2567212 Mon Sep 17 00:00:00 2001 From: Robert Altner Date: Tue, 16 Jul 2024 10:01:56 +0200 Subject: [PATCH] dfkdj --- init.vim | 7 +++++++ lua/init.lua | 2 ++ lua/keymap.lua | 1 + lua/plugins.lua | 2 +- 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/init.vim b/init.vim index 694d6ff..1eead7f 100644 --- a/init.vim +++ b/init.vim @@ -51,3 +51,10 @@ let g:coc_snippet_next = '' highlight LineNr guifg=#fcc35a set noexpandtab +if has('python') + map :pyf /usr/share/clang/clang-format.py + imap :pyf /usr/share/clang/clang-format.py +elseif has('python3') + map :py3f /usr/share/clang/clang-format.py + imap :py3f /usr/share/clang/clang-format.py +endif diff --git a/lua/init.lua b/lua/init.lua index 249d43a..fad6c41 100644 --- a/lua/init.lua +++ b/lua/init.lua @@ -40,6 +40,8 @@ require'nvim-treesitter.configs'.setup { } } +require'treesitter-context' + require("telescope").setup{ defaults = { file_ignore_patterns = { diff --git a/lua/keymap.lua b/lua/keymap.lua index 55ed28b..84bcbab 100644 --- a/lua/keymap.lua +++ b/lua/keymap.lua @@ -20,6 +20,7 @@ map("n", "s", ":Telescope live_grep glob_pattern=*.{ts,html,c,h,go,json, map("n", "sc", ":noh") map("n", "gs", ":call CocAction('jumpDefinition', 'split')") +map("n", "gt", ":CocCommand clangd.switchSourceHeader") map("n", "1", "1gt") map("n", "2", "2gt") diff --git a/lua/plugins.lua b/lua/plugins.lua index 9f48ec8..74a2bf1 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -12,8 +12,8 @@ return { "puremourning/vimspector", "folke/tokyonight.nvim", "rebelot/kanagawa.nvim", - "wellle/context.vim", "andweeb/presence.nvim", + "nvim-treesitter/nvim-treesitter-context", "vimsence/vimsence", { 'numToStr/Comment.nvim',