~skiqqy/.dotfiles

836955e650fa64f17a7ed178aae0971ad74c243e — Stephen Cochrane 1 year, 9 months ago 2fc8e93
Tidy up vimrc, prep for v2 of dotties
2 files changed, 3 insertions(+), 3 deletions(-)

M miscfiles/atom/config.cson
M miscfiles/vim/.vimrc
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