Use onehalf colourscheme instead

Enable mouse support
This commit is contained in:
Edward Litherland-Smith 2022-07-27 08:40:33 +01:00
parent cf488628be
commit 4d36c12b12

View file

@ -15,6 +15,7 @@ call plug#begin()
Plug 'neovim/nvim-lspconfig' Plug 'neovim/nvim-lspconfig'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'sonph/onehalf', {'rtp': 'vim/'}
Plug 'joshdick/onedark.vim' Plug 'joshdick/onedark.vim'
Plug 'mileszs/ack.vim' Plug 'mileszs/ack.vim'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
@ -33,6 +34,7 @@ Plug 'christoomey/vim-tmux-navigator'
" Initialize plugin system " Initialize plugin system
call plug#end() call plug#end()
set mouse=nv
let g:python3_host_prog = '~/.pyenv/versions/base/bin/python' let g:python3_host_prog = '~/.pyenv/versions/base/bin/python'
lua << EOF lua << EOF
@ -92,7 +94,8 @@ endif
if exists('+termguicolors') && ($COLORTERM == "24bit" || $COLORTERM == "truecolor") if exists('+termguicolors') && ($COLORTERM == "24bit" || $COLORTERM == "truecolor")
set termguicolors set termguicolors
endif endif
colorscheme onedark colorscheme onehalfdark
let g:airline_theme='onehalfdark'
set cursorline set cursorline
let mapleader="," let mapleader=","