2 Commits ace132170f ... dad3818c22

Author SHA1 Message Date
  Ralph Giles dad3818c22 Use a base16 colour scheme. 5 years ago
  Ralph Giles e739fc07ab Replace YouCompleteMe with ALE. 5 years ago
2 changed files with 17 additions and 6 deletions
  1. 1 1
      Vundle.vim
  2. 16 5
      init.vim

+ 1 - 1
Vundle.vim

@@ -1 +1 @@
-Subproject commit fef1c2f31862c44cf5295ef86c086efba4af20a9
+Subproject commit 9a38216a1c0c597f978d73547d37681fc689c90d

+ 16 - 5
init.vim

@@ -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/*']