This commit is contained in:
Robert Altner 2024-07-16 10:01:56 +02:00
parent 9816bfb18d
commit 46edf6566d
No known key found for this signature in database
GPG key ID: 58794C52DAF9EAD8
4 changed files with 11 additions and 1 deletions

View file

@ -51,3 +51,10 @@ let g:coc_snippet_next = '<tab>'
highlight LineNr guifg=#fcc35a
set noexpandtab
if has('python')
map <C-K> :pyf /usr/share/clang/clang-format.py<cr>
imap <C-K> <c-o>:pyf /usr/share/clang/clang-format.py<cr>
elseif has('python3')
map <C-K> :py3f /usr/share/clang/clang-format.py<cr>
imap <C-K> <c-o>:py3f /usr/share/clang/clang-format.py<cr>
endif

View file

@ -40,6 +40,8 @@ require'nvim-treesitter.configs'.setup {
}
}
require'treesitter-context'
require("telescope").setup{
defaults = {
file_ignore_patterns = {

View file

@ -20,6 +20,7 @@ map("n", "<leader>s", ":Telescope live_grep glob_pattern=*.{ts,html,c,h,go,json,
map("n", "<leader>sc", ":noh<CR>")
map("n", "gs", ":call CocAction('jumpDefinition', 'split')<CR>")
map("n", "gt", ":CocCommand clangd.switchSourceHeader<CR>")
map("n", "<leader>1", "1gt")
map("n", "<leader>2", "2gt")

View file

@ -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',