diff --git a/copyfile.cmd b/copyfile.cmd index 043b01c..5cc4c7f 100644 --- a/copyfile.cmd +++ b/copyfile.cmd @@ -1 +1,6 @@ -copy aliases.cmd %USERPROFILE% \ No newline at end of file +set startdir = %cd% +set aliasdir = %USERPROFILE% +set nvmdir = %aliasdir% + \AppData\Local\nvim\ + +echo mklink aliases.cmd %stardir% +echo mklink init.vim %startdir% diff --git a/init.vim b/init.vim index 25996ae..0c1579e 100644 --- a/init.vim +++ b/init.vim @@ -1,3 +1,5 @@ +" set rtp+=~/.fzf + " disable compatability set nocompatible @@ -37,10 +39,12 @@ autocmd BufRead,BufNewFile *.md set spell spelllang=en_us call plug#begin('~/AppData/Local/nvim/plugged') Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } Plug 'tpope/vim-unimpaired' -Plug 'junegunn/fzf.vim' +" Plug 'junegunn/fzf.vim', { 'dir': '~/.fzf', 'do': './install --all' } Plug 'tpope/vim-scriptease', {'type': 'opt'} Plug 'jeffkreeftmeijer/vim-numbertoggle' +Plug 'oranget/vim-csharp' + " Git integration Plug 'tpope/vim-fugitive' Plug 'airblade/vim-gitgutter' @@ -63,7 +67,6 @@ Plug 'mklabs/split-term.vim' Plug 'pangloss/vim-javascript' " javascript Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' } " Go Plug 'vim-ruby/vim-ruby' " Ruby -Plug 'oranget/vim-csharp' Plug 'OmniSharp/omnisharp-vim' " C# " Frameworks @@ -103,9 +106,14 @@ let g:syntastic_always_populate_loc_list = 1 let g:syntastic_auto_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0 +let g:deoplete#enable_at_startup = 1 + +" Python Env let g:python_host_prog = 'C:\Python27\python' let g:python3_host_prog = 'C:\Python37\python' -let g:deoplete#enable_at_startup = 1 + +" Roslyn Compiler +let g:OmniSharp_selector_ui = 'ctrlp' let g:OmniSharp_server_type = 'roslyn' let g:OmniSharp_prefer_global_sln = 1 let g:OmniSharp_timeout = 10 @@ -123,4 +131,4 @@ inoremap jk " nnoremap "Split right " nnoremap "Split left set splitbelow -set splitright \ No newline at end of file +set splitright diff --git a/readme.md b/readme.md index 0b7e237..ca894ae 100644 --- a/readme.md +++ b/readme.md @@ -1,3 +1,4 @@ # DOSKEY Aliases Get command line aliases in your Windows Command Prompt. +Create symlinks from repo to repsective dirs. \ No newline at end of file