Compare commits

..

No commits in common. "b40a9abb5938ddd2498f992fa9634eef1493788b" and "b3a2208b42d8ee7a44f3d746d55bcb65cf3bb10a" have entirely different histories.

3 changed files with 5 additions and 27 deletions

View File

@ -9,12 +9,6 @@ def complete(t, opts):
return '|'.join(opts)
endglobal
snippet rst
#[=======================================================================[.rst:
$0
#]=======================================================================]
endsnippet
snippet add_compile_options
add_compile_options($1)
endsnippet

View File

@ -76,15 +76,11 @@ nnoremap <leader>tm :tabmove<Space>
" Clear search highlights
nnoremap <leader><Space> :nohlsearch<CR>
if g:use_osc52
noremap <leader>y :Oscyank<CR>
else
" System clipboard yank/put
noremap <leader>y "+y
noremap <leader>Y "+Y
noremap <leader>p "+p
noremap <leader>P "+P
endif
" System clipboard yank/put
noremap <leader>y "+y
noremap <leader>Y "+Y
noremap <leader>p "+p
noremap <leader>P "+P
" Quickly access spelling menu
inoremap <C-s> <C-g>u<C-X>s

12
vimrc
View File

@ -199,15 +199,3 @@ Pack 'mustache/vim-mustache-handlebars'
Pack 'joshglendenning/vim-caddyfile'
Pack 'kbenzie/vim-khr'
Pack 'jrozner/vim-antlr'
" Plugins for remote integrations
Pack 'greymd/oscyank.vim', {'type': 'opt'}
let g:use_osc52 = trim(system('tmux show-options -g set-clipboard')) ==# 'set-clipboard on'
if g:use_osc52
packadd oscyank.vim
endif
" Load YouComplteMe if termdebug plugin is not loaded.
if !exists(':Termdebug')
packadd YouCompleteMe
endif