neovim terminal colors

master
Jordan Orelli 2 years ago
parent 65af79f8c3
commit 416c3c69dc

@ -8,7 +8,7 @@ files:
.bashrc .bashrc
[home vim] [home vim]
when: host.has('vim') when: host.has('vim') or host.has('nvim')
files: files:
vim/ftplugin > .vim/ftplugin vim/ftplugin > .vim/ftplugin
vim/pack > .vim/pack vim/pack > .vim/pack
@ -23,10 +23,14 @@ when: host.is_windows and host.has('nvim')
target_root: ~/AppData/Local target_root: ~/AppData/Local
files: files:
nvim/lua nvim/lua
vim/ftplugin > nvim/ftplugin nvim/init.vim
vimrc > nvim/init.vim
Vundle.vim > nvim/bundle/Vundle.vim Vundle.vim > nvim/bundle/Vundle.vim
[git vundle]
when: host.has('vim') or host.has('nvim')
repo: https://github.com/VundleVim/Vundle.vim.git
target: ~/.vim/bundle/Vundle.vim
[git packer-posix] [git packer-posix]
when: not host.is_windows when: not host.is_windows
repo: https://github.com/wbthomason/packer.nvim repo: https://github.com/wbthomason/packer.nvim

@ -1,22 +1,23 @@
set nocompatible set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc
map <F12> :source $MYVIMRC<CR> " no line numbers in terminal windows please
au TermOpen * setlocal nonumber
" Plugins -------------------------------------------------------------------{{{ let g:terminal_color_0 = '#929292'
" set the runtime path to include Vundle and initialize let g:terminal_color_1 = '#e27373'
if has('win32') let g:terminal_color_2 = '#94b979'
set rtp+=~/AppData/Local/nvim/bundle/Vundle.vim let g:terminal_color_3 = '#ffba7b'
else let g:terminal_color_4 = '#97bedc'
set rtp+=~/.vim/bundle/Vundle.vim let g:terminal_color_5 = '#e1c0fa'
endif let g:terminal_color_6 = '#00988e'
let g:terminal_color_7 = '#dedede'
filetype off let g:terminal_color_8 = '#bdbdbd'
call vundle#begin() let g:terminal_color_9 = '#ffa1a1'
Plugin 'VundleVim/Vundle.vim' let g:terminal_color_10 = '#bddeab'
Plugin 'nanotech/jellybeans.vim' let g:terminal_color_11 = '#ffdca0'
Plugin 'itchyny/lightline.vim' " fancy status line let g:terminal_color_12 = '#b1d8f6'
call vundle#end() let g:terminal_color_13 = '#fbdaff'
let g:terminal_color_14 = '#1ab2a8'
" enable the filetype plugin let g:terminal_color_15 = '#ffffff'
filetype plugin indent on
" ---------------------------------------------------------------------------}}}

@ -3,12 +3,9 @@ function packer_startup(use)
use 'wbthomason/packer.nvim' use 'wbthomason/packer.nvim'
-- lsp manager -- lsp manager
-- use 'williamboman/mason.nvim'
-- use 'williamboman/mason-lspconfig.nvim'
use 'neovim/nvim-lspconfig' use 'neovim/nvim-lspconfig'
end end
require('packer').startup(packer_startup) require('packer').startup(packer_startup)
-- require('mason').setup()
require('lspconfig').rust_analyzer.setup({}) require('lspconfig').rust_analyzer.setup({})

Loading…
Cancel
Save