dfkdj
This commit is contained in:
parent
9816bfb18d
commit
46edf6566d
7
init.vim
7
init.vim
|
@ -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
|
||||
|
|
|
@ -40,6 +40,8 @@ require'nvim-treesitter.configs'.setup {
|
|||
}
|
||||
}
|
||||
|
||||
require'treesitter-context'
|
||||
|
||||
require("telescope").setup{
|
||||
defaults = {
|
||||
file_ignore_patterns = {
|
||||
|
|
|
@ -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")
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue