Added automatic search for python in neovim using pyenv, fixed visual line colour on pro

This commit is contained in:
2016-06-11 18:16:51 +01:00
parent 7c4cba2f92
commit 39a221ad48
+7 -5
View File
@@ -1,10 +1,10 @@
" Vim settings
let g:python_host_prog='/Users/samuelperry/.pyenv/shims/python'
let g:python3_host_prog = '/Users/samuelperry/.pyenv/shims/python3'
" Find the filepath to the currently active pyenv pythons and use these as the
" python programs.
let g:python_host_prog=system("pyenv which python | xargs echo -n")
let g:python3_host_prog=system("pyenv which python3 | xargs echo -n")
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=/usr/local/Cellar/fzf/HEAD
call plug#begin()
function! DoRemote(arg)
@@ -47,7 +47,6 @@ Plug 'zchee/deoplete-clang'
Plug 'zchee/deoplete-jedi'
Plug 'benekastah/neomake'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
call plug#end() " required
filetype on
filetype plugin on
@@ -211,8 +210,11 @@ let g:indentLine_enabled = 0
" Set to the dark solarized colour scheme
colorscheme solarized
set background=dark
let g:solarized_termtrans = 1
let g:solarized_termcolors=16
let g:solarized_visibility="high"
let g:solarized_contrast = "high"
hi Visual term=reverse cterm=reverse guibg=Grey
set t_Co=16
" ====================================