diff options
| author | Chrisatmachine <[email protected]> | 2018-08-20 21:14:49 -0400 | 
|---|---|---|
| committer | Chrisatmachine <[email protected]> | 2018-08-20 21:14:49 -0400 | 
| commit | 76c96ae52be960c3642ad42159aba74920947af0 (patch) | |
| tree | 9a20123828ed68f3d1302f9343d86aef97f03762 | |
| parent | aa22dcbc102d9f52df76bb49bfd4426f28185756 (diff) | |
fixed comma
| -rw-r--r-- | init.vim | 5 | ||||
| -rw-r--r-- | tags | 2 | 
2 files changed, 7 insertions, 0 deletions
@@ -6,6 +6,7 @@ set encoding=utf8  set mouse=a  set splitbelow  set splitright +set t_Co=256  " escape can blow me  nnoremap <C-c> <Esc>  " Set Proper Tabs @@ -153,6 +154,10 @@ let base16colorspace=256  " Access colors present in 256 colorspace  let g:airline#extensions#tabline#enabled = 1  let g:airline_powerline_fonts = 1   let g:hybrid_custom_term_colors = 1 +if !exists('g:airline_symbols') +  let g:airline_symbols = {} +endif +let g:airline_symbols.space = "\ua0"  endif  " Enable highlighting of the current line  set cursorline @@ -28,6 +28,8 @@  base16colorspace	init.vim	/^let base16colorspace=256  " Access colors present in 256 colorspace$/;"	v  g:airline#extensions#tabline#enabled	init.vim	/^let g:airline#extensions#tabline#enabled = 1$/;"	v  g:airline_powerline_fonts	init.vim	/^let g:airline_powerline_fonts = 1 $/;"	v +g:airline_symbols	init.vim	/^  let g:airline_symbols = {}$/;"	v +g:airline_symbols	init.vim	/^let g:airline_symbols.space = "\\ua0"$/;"	v  g:airline_theme	init.vim	/^  let g:airline_theme='violet'$/;"	v  g:ale_c_gcc_options	init.vim	/^let g:ale_c_gcc_options='-Wall -Wextra'$/;"	v  g:ale_cpp_gcc_options	init.vim	/^let g:ale_cpp_gcc_options='-Wall -Wextra'$/;"	v  | 
