More vim
This commit is contained in:
parent
f5453a9fe0
commit
7afb4217d2
1 changed files with 41 additions and 4 deletions
45
vim/vimrc
45
vim/vimrc
|
@ -22,6 +22,10 @@ set list
|
|||
set listchars=tab:→\ ,eol:¬,trail:•,extends:❯,precedes:❮,space:⨪
|
||||
set showbreak=↪
|
||||
set timeoutlen=500
|
||||
set ignorecase
|
||||
set smartcase
|
||||
set splitbelow
|
||||
set splitright
|
||||
|
||||
let g:mapleader="\<SPACE>"
|
||||
let g:maplocallead=','
|
||||
|
@ -31,15 +35,21 @@ if has('nvim')
|
|||
endif
|
||||
|
||||
if has("persistent_undo")
|
||||
set undodir=$HOME/.undodir
|
||||
set undofile
|
||||
set undodir=$HOME/.undodir
|
||||
endif
|
||||
|
||||
call plug#begin('~/.config/nvim/plugged')
|
||||
Plug 'junegunn/vim-plug'
|
||||
|
||||
"LSP Stuff
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
Plug 'rust-lang/rust.vim'
|
||||
Plug 'godlygeek/tabular'
|
||||
Plug 'cespare/vim-toml'
|
||||
Plug 'stephpy/vim-yaml'
|
||||
|
||||
Plug 'terryma/vim-expand-region'
|
||||
Plug 'junegunn/rainbow_parentheses.vim'
|
||||
|
||||
Plug 'machakann/vim-highlightedyank'
|
||||
|
@ -53,13 +63,11 @@ Plug 'tpope/vim-commentary'
|
|||
Plug 'mbbill/undotree'
|
||||
Plug 'elmcast/elm-vim'
|
||||
Plug 'liuchengxu/vim-which-key'
|
||||
Plug 'airblade/vim-rooter'
|
||||
|
||||
"async.vim
|
||||
Plug 'prabirshrestha/async.vim'
|
||||
|
||||
Plug 'liuchengxu/vim-clap', { 'do': function('clap#helper#build_all') }
|
||||
Plug 'liuchengxu/vista.vim'
|
||||
|
||||
call plug#end()
|
||||
|
||||
inoremap <silent><expr> <TAB>
|
||||
|
@ -98,6 +106,18 @@ nnoremap <leader>n :nohl<cr>
|
|||
nnoremap <C-k> <C-u>
|
||||
nnoremap <C-j> <C-d>
|
||||
|
||||
" Read and write to system clipboard
|
||||
vnoremap <Leader>y "+y
|
||||
vnoremap <Leader>d "+d
|
||||
nnoremap <Leader>p "+p
|
||||
nnoremap <Leader>P "+P
|
||||
vnoremap <Leader>p "+p
|
||||
vnoremap <Leader>P "+P
|
||||
|
||||
" Keep expanding regions with v in visual mode
|
||||
vmap v <Plug>(expand_region_expand)
|
||||
vmap <C-v> <Plug>(expand_region_shrink)
|
||||
|
||||
"Coc Keymaps and options
|
||||
nnoremap <silent> <leader><Space>d :call CocAction('jumpDefinition')<cr>
|
||||
nnoremap <silent> <leader><Space>g :call CocAction('jumpTypeDefinition')<cr>
|
||||
|
@ -118,3 +138,20 @@ nnoremap <silent> <localleader> :<c-u>WhichKey ','<CR>
|
|||
autocmd VimEnter * RainbowParentheses
|
||||
let g:rainbow#blacklist = [248]
|
||||
let g:rainbow#pairs = [['(', ')'], ['[', ']'], ['{', '}']]
|
||||
|
||||
function! s:transformed_url(url)
|
||||
let l:rv = a:url
|
||||
let l:rv = system("echo " . l:rv . ' | sed "s|:|/|" | sed "s|git@|https://|"')
|
||||
return l:rv
|
||||
endfunction
|
||||
|
||||
function! GetGitUrl()
|
||||
let url = trim(system("git remote get-url origin"))
|
||||
let t_url = s:transformed_url(url)
|
||||
let branch = system("git branch --show-current")
|
||||
let file_name = expand('%')
|
||||
let line_num = line(".")
|
||||
let @+ = trim(t_url) . "/blob/" . trim(branch) . "/" . trim(file_name) . "#L" . trim(line_num)
|
||||
endfunction
|
||||
|
||||
nnoremap <silent> <leader>c :call GetGitUrl()<CR>
|
||||
|
|
Loading…
Add table
Reference in a new issue