vim indenting and code range
This commit is contained in:
parent
3490407647
commit
4273b7612e
2 changed files with 56 additions and 49 deletions
12
.vimrc
12
.vimrc
|
|
@ -113,7 +113,6 @@ Plug 'chrisbra/NrrwRgn'
|
|||
"Plug 'tpope/vim-fireplace', {'for': 'clojure'}
|
||||
""Plug 'terryma/vim-multiple-cursors'
|
||||
"Plug 'ambv/black'
|
||||
Plug 'kana/vim-textobj-user'
|
||||
|
||||
|
||||
" Plugins I wish I used more
|
||||
|
|
@ -126,7 +125,6 @@ Plug 'tpope/vim-unimpaired'
|
|||
Plug 'b4winckler/vim-angry'
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'junegunn/vim-easy-align'
|
||||
Plug 'bps/vim-textobj-python'
|
||||
|
||||
" Plugins I NEED
|
||||
Plug 'scrooloose/nerdcommenter'
|
||||
|
|
@ -230,6 +228,8 @@ Plug 'kristijanhusak/defx-icons'
|
|||
|
||||
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||
Plug 'nvim-treesitter/playground'
|
||||
Plug 'nvim-treesitter/nvim-treesitter-textobjects'
|
||||
|
||||
|
||||
"Plug 'ggandor/lightspeed.nvim'
|
||||
"Plug 'justinmk/vim-sneak'
|
||||
|
|
@ -280,7 +280,7 @@ nnoremap <silent> gW <cmd>lua vim.lsp.buf.workspace_symbol()<CR>
|
|||
"nnoremap <silent> gd <cmd>lua vim.lsp.buf.declaration()<CR>
|
||||
nnoremap <silent> ga <cmd>lua vim.lsp.buf.code_action()<CR>
|
||||
"nnoremap <silent> ga <cmd>lua require('telescope.builtin').lsp_code_actions({initial_mode = "normal"})<cr>
|
||||
vnoremap <silent> ga <cmd>lua vim.lsp.buf.range_code_action()<CR>
|
||||
vnoremap <silent> ga <cmd>lua vim.lsp.buf.code_action()<CR>
|
||||
"vnoremap <silent> ga :<C-U>lua require('telescope.builtin').lsp_range_code_actions({initial_mode = "normal"})<cr>
|
||||
"nnoremap <silent> ge <cmd>lua vim.lsp.diagnostic.show_line_diagnostics({show_header = false, focusable = false})<CR>
|
||||
"nnoremap <silent> ge <cmd>lua vim.diagnostic.open_float({focusable = false})<CR>
|
||||
|
|
@ -1083,3 +1083,9 @@ map <F10> command! -nargs=0 Syn call Syn()
|
|||
" Final hi links for TreeSitter
|
||||
|
||||
hi link @type.rust TSCSecondaryTypeParam
|
||||
|
||||
let s:gptool_temp = expand($HOME . '/src/gptool/bindings.vim')
|
||||
if filereadable(s:gptool_temp)
|
||||
exec ':so ' . s:gptool_temp
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue