" load the plugin and indent settings for the detected filetype
filetype plugin indent on
filetype plugin on
+set omnifunc=syntaxcomplete#Complete
" Opens an edit command with the path of the currently edited file filled in
" Normal mode: <Leader>e
set modelines=10
" Default color scheme
-set t_Co=256
-color molokai
+set termguicolors
+color rbdr
" Directories for swp files
set backupdir=~/.vim/.backup
nnoremap <C-n> :call NumberToggle()<cr>
-" Syntastic stuff
-let g:syntastic_javascript_checkers = ['eslint']
-let g:syntastic_always_populate_loc_list = 1
-let g:syntastic_check_on_open = 1
-let g:syntastic_check_on_wq = 1
-let g:syntastic_error_symbol = "X"
-let g:syntastic_warning_symbol = "!"
-
" Dank Mono Italics
highlight Keyword cterm=italic
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'] }
+
+" ALE config
+let g:ale_linters = {'javascript': ['eslint']}