diff --git a/vim/vimrc b/vim/vimrc index 90a1c23..a8224c7 100644 --- a/vim/vimrc +++ b/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="\" 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 @@ -98,6 +106,18 @@ nnoremap n :nohl nnoremap nnoremap +" Read and write to system clipboard +vnoremap y "+y +vnoremap d "+d +nnoremap p "+p +nnoremap P "+P +vnoremap p "+p +vnoremap P "+P + +" Keep expanding regions with v in visual mode +vmap v (expand_region_expand) +vmap (expand_region_shrink) + "Coc Keymaps and options nnoremap d :call CocAction('jumpDefinition') nnoremap g :call CocAction('jumpTypeDefinition') @@ -118,3 +138,20 @@ nnoremap :WhichKey ',' 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 c :call GetGitUrl()