mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
Compare commits
No commits in common. "50793f84a9086f7d122cc655a3f34671b3f1faf3" and "c23ce14d0575c93bcc06b892466d118c057fa20a" have entirely different histories.
50793f84a9
...
c23ce14d05
3 changed files with 3 additions and 16 deletions
2
nvim/coc-languages/lisp.vim
Normal file
2
nvim/coc-languages/lisp.vim
Normal file
|
@ -0,0 +1,2 @@
|
|||
call extend(g:dotfiles_coc_extensions, {'coc-cl': 1})
|
||||
call extend(g:dotfiles_coc_filetypes, {'lsp': 1})
|
|
@ -14,7 +14,7 @@ else
|
|||
endif
|
||||
|
||||
" Arrow key fix kanged from <https://vim.fandom.com/wiki/Fix_arrow_keys_that_display_A_B_C_D_on_remote_shell#Solution_21> {{{
|
||||
if exists("g:HELP_MY_ARROW_KEYS_ARE_BROKEN")
|
||||
if g:HELP_MY_ARROW_KEYS_ARE_BROKEN
|
||||
" the following simply creates an ambiguous mapping so vim fully
|
||||
" processes the escape sequence for terminal keys, see 'ttimeout' for a
|
||||
" rough explanation, this just forces it to work
|
||||
|
|
|
@ -1,20 +1,5 @@
|
|||
nnoremap <C-t> :NERDTreeToggle<CR>
|
||||
|
||||
" Completion {{{
|
||||
function! s:check_back_space() abort
|
||||
let col = col('.') - 1
|
||||
return !col || getline('.')[col - 1] =~ '\s'
|
||||
endfunction
|
||||
|
||||
inoremap <expr> <cr> coc#pum#visible() ? coc#_select_confirm() : "\<CR>"
|
||||
|
||||
inoremap <silent><expr> <TAB>
|
||||
\ coc#pum#visible() ? coc#pum#next(1):
|
||||
\ <SID>check_back_space() ? "\<Tab>" :
|
||||
\ coc#refresh()
|
||||
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
||||
" }}}
|
||||
|
||||
" Copy to clipboard register and paste from clipboard register {{{
|
||||
" Taken from https://unix.stackexchange.com/a/23437
|
||||
nnoremap <C-y> "+y
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue