|
@@ -5,6 +5,8 @@ call vundle#begin('~/.config/nvim')
|
|
|
|
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
|
|
+Plugin 'chriskempson/base16-vim'
|
|
|
+
|
|
|
Plugin 'pangloss/vim-javascript'
|
|
|
Plugin 'elzr/vim-json'
|
|
|
|
|
@@ -15,7 +17,9 @@ Plugin 'tpope/vim-fugitive'
|
|
|
Plugin 'tpope/vim-surround'
|
|
|
Plugin 'tpope/vim-commentary'
|
|
|
|
|
|
-Plugin 'valloric/YouCompleteMe'
|
|
|
+"Plugin 'valloric/YouCompleteMe'
|
|
|
+
|
|
|
+Plugin 'w0rp/ale'
|
|
|
|
|
|
call vundle#end()
|
|
|
filetype plugin indent on
|
|
@@ -25,11 +29,18 @@ set clipboard+=unnamed
|
|
|
|
|
|
set background=dark
|
|
|
|
|
|
+" Enable base16 swatch-based colour theme.
|
|
|
+set termguicolors
|
|
|
+colorscheme base16-black-metal-bathory
|
|
|
+"colorscheme base16-atelier-savanna
|
|
|
+"colorscheme base16-3024
|
|
|
+
|
|
|
set ruler
|
|
|
set expandtab
|
|
|
set shiftwidth=2
|
|
|
|
|
|
-:noremap <C-_> :YcmCompleter GoTo<CR>
|
|
|
-
|
|
|
-let g:ycm_rust_src_path = '/Users/giles/rust/src'
|
|
|
-let g:ycm_extra_conf_globlist = ['~/firefox/*']
|
|
|
+" YouCompleteMe config
|
|
|
+":noremap <C-_> :YcmCompleter GoTo<CR>
|
|
|
+"
|
|
|
+"let g:ycm_rust_src_path = '/Users/giles/rust/src'
|
|
|
+"let g:ycm_extra_conf_globlist = ['~/firefox/*']
|