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
|
highlight LineNr guifg=#fcc35a
|
||||||
set noexpandtab
|
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{
|
require("telescope").setup{
|
||||||
defaults = {
|
defaults = {
|
||||||
file_ignore_patterns = {
|
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", "<leader>sc", ":noh<CR>")
|
||||||
|
|
||||||
map("n", "gs", ":call CocAction('jumpDefinition', 'split')<CR>")
|
map("n", "gs", ":call CocAction('jumpDefinition', 'split')<CR>")
|
||||||
|
map("n", "gt", ":CocCommand clangd.switchSourceHeader<CR>")
|
||||||
|
|
||||||
map("n", "<leader>1", "1gt")
|
map("n", "<leader>1", "1gt")
|
||||||
map("n", "<leader>2", "2gt")
|
map("n", "<leader>2", "2gt")
|
||||||
|
|
|
@ -12,8 +12,8 @@ return {
|
||||||
"puremourning/vimspector",
|
"puremourning/vimspector",
|
||||||
"folke/tokyonight.nvim",
|
"folke/tokyonight.nvim",
|
||||||
"rebelot/kanagawa.nvim",
|
"rebelot/kanagawa.nvim",
|
||||||
"wellle/context.vim",
|
|
||||||
"andweeb/presence.nvim",
|
"andweeb/presence.nvim",
|
||||||
|
"nvim-treesitter/nvim-treesitter-context",
|
||||||
"vimsence/vimsence",
|
"vimsence/vimsence",
|
||||||
{
|
{
|
||||||
'numToStr/Comment.nvim',
|
'numToStr/Comment.nvim',
|
||||||
|
|
Loading…
Reference in a new issue