update files

This commit is contained in:
Eric D. Rohler 2019-04-19 17:08:37 -04:00
parent 0e5575a05f
commit 0df091c2be
3 changed files with 19 additions and 5 deletions

View File

@ -1 +1,6 @@
copy aliases.cmd %USERPROFILE%
set startdir = %cd%
set aliasdir = %USERPROFILE%
set nvmdir = %aliasdir% + \AppData\Local\nvim\
echo mklink aliases.cmd %stardir%
echo mklink init.vim %startdir%

View File

@ -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

View File

@ -1,3 +1,4 @@
# DOSKEY Aliases
Get command line aliases in your Windows Command Prompt.
Create symlinks from repo to repsective dirs.