M miscfiles/atom/config.cson => miscfiles/atom/config.cson +0 -1
@@ 7,7 7,6 @@
"autocomplete-plus":
enableAutoActivation: false
core:
- autoHideMenuBar: true
followSymlinks: false
projectHome: "/home/skippy/repos"
telemetryConsent: "no"
M miscfiles/vim/.vimrc => miscfiles/vim/.vimrc +3 -2
@@ 34,9 34,11 @@ endif
call plug#begin('~/.vim/plugged')
" Deving
Plug 'airblade/vim-gitgutter'
-Plug 'dense-analysis/ale'
+Plug 'dense-analysis/ale', { 'on': 'ALEToggle' }
Plug 'ctrlpvim/ctrlp.vim'
Plug 'scrooloose/nerdtree'
+Plug 'prabirshrestha/vim-lsp'
+Plug 'mattn/vim-lsp-settings'
" Theming
Plug 'vim-airline/vim-airline'
@@ 71,7 73,6 @@ endif
set wildignore+=*/tmp/*,*.so,*.swp,*.zip " Linux/MacOSX
" Java deving, ECLIPSE_JDT_LS should contain the path to the langaun server
-let g:ale_java_eclipselsp_path = $ECLIPSE_JDT_LS
set wildignore+=*.class " Ignore class files
inoremap jp<Tab> System.out.println("");<Esc>2hi