misc dotfile changes
This commit is contained in:
parent
316251e7cc
commit
7ed2b20bee
3 changed files with 10 additions and 15 deletions
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
export IGVERBOSE=3
|
|
||||||
rm -rf ~/Library/Application\ Support/IOCOM/visimeet/dswan.iocom.com
|
|
||||||
[ -s /opt/visimeet/visimeet ] && /opt/visimeet/visimeet --nologin &
|
|
||||||
[ -s /Applications/Visimeet.app/Contents/MacOS/visimeet ] && /Applications/Visimeet.app/Contents/MacOS/visimeet --nologin --remote-debugging-port=1234 &
|
|
||||||
6
bin/visionable
Executable file
6
bin/visionable
Executable file
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
export IGVERBOSE=3
|
||||||
|
rm -rf ~/Library/Application\ Support/IOCOM/visionable/dswan.iocom.com
|
||||||
|
rm -rf ~/Library/Application\ Support/IOCOM/visionable/dswan.visionable.com
|
||||||
|
[ -s /opt/visimeet/visimeet ] && /opt/visimeet/visimeet --nologin &
|
||||||
|
[ -s /Applications/Visionable.app/Contents/MacOS/visionable ] && /Applications/Visionable.app/Contents/MacOS/visionable --nologin --remote-debugging-port=1234 --enable-experimental-web-platform-features --disable-pinch &
|
||||||
14
vimrc
14
vimrc
|
|
@ -16,7 +16,8 @@ Plug 'tpope/vim-jdaddy'
|
||||||
Plug 'w0rp/ale' " previously 'neomake/neomake, 'scrooloose/syntastic'
|
Plug 'w0rp/ale' " previously 'neomake/neomake, 'scrooloose/syntastic'
|
||||||
Plug 'SirVer/ultisnips'
|
Plug 'SirVer/ultisnips'
|
||||||
Plug 'honza/vim-snippets'
|
Plug 'honza/vim-snippets'
|
||||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " previously YouCompleteMe
|
Plug 'autozimu/LanguageClient-neovim', { 'branch': 'next', 'do': 'bash install.sh' }
|
||||||
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
Plug 'carlitux/deoplete-ternjs', { 'do': 'npm install -g tern' }
|
Plug 'carlitux/deoplete-ternjs', { 'do': 'npm install -g tern' }
|
||||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
|
|
@ -24,7 +25,6 @@ Plug 'christoomey/vim-tmux-navigator'
|
||||||
Plug 'terryma/vim-multiple-cursors'
|
Plug 'terryma/vim-multiple-cursors'
|
||||||
Plug 'easymotion/vim-easymotion'
|
Plug 'easymotion/vim-easymotion'
|
||||||
Plug 'justinmk/vim-sneak'
|
Plug 'justinmk/vim-sneak'
|
||||||
Plug 'majutsushi/tagbar'
|
|
||||||
Plug 'scrooloose/nerdcommenter'
|
Plug 'scrooloose/nerdcommenter'
|
||||||
Plug 'gregsexton/MatchTag' " highlight matching HTML tag
|
Plug 'gregsexton/MatchTag' " highlight matching HTML tag
|
||||||
Plug 'Raimondi/delimitMate'
|
Plug 'Raimondi/delimitMate'
|
||||||
|
|
@ -154,12 +154,6 @@ highlight SignColumn ctermbg=NONE
|
||||||
highlight LineNr ctermbg=NONE ctermfg=darkgrey
|
highlight LineNr ctermbg=NONE ctermfg=darkgrey
|
||||||
" highlight StatusLine guibg=NONE ctermfg=NONE ctermbg=red
|
" highlight StatusLine guibg=NONE ctermfg=NONE ctermbg=red
|
||||||
|
|
||||||
" Tagbar
|
|
||||||
nnoremap <silent><leader>t :TagbarToggle <cr>
|
|
||||||
|
|
||||||
" Supertab
|
|
||||||
" let g:SuperTabDefaultCompletionType="context"
|
|
||||||
|
|
||||||
" UltiSnips
|
" UltiSnips
|
||||||
let g:UltiSnipsExpandTrigger="<tab>"
|
let g:UltiSnipsExpandTrigger="<tab>"
|
||||||
let g:UltiSnipsJumpForwardTrigger="<tab>"
|
let g:UltiSnipsJumpForwardTrigger="<tab>"
|
||||||
|
|
@ -232,10 +226,10 @@ let g:EasyMotion_smartcase = 1
|
||||||
|
|
||||||
" Deoplete
|
" Deoplete
|
||||||
let g:deoplete#enable_at_startup = 1
|
let g:deoplete#enable_at_startup = 1
|
||||||
let g:deoplete#enable_smart_case = 1
|
" let g:deoplete#enable_smart_case = 1
|
||||||
|
|
||||||
" vim-tmux-navigator - needed due to a bug in MacOS terminfo
|
" vim-tmux-navigator - needed due to a bug in MacOS terminfo
|
||||||
nnoremap <silent> <BS> :TmuxNavigateLeft<cr>
|
"nnoremap <silent> <BS> :TmuxNavigateLeft<cr>
|
||||||
|
|
||||||
" Tabs
|
" Tabs
|
||||||
nmap <leader>1 1gt
|
nmap <leader>1 1gt
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue