vim switch to material theme

This commit is contained in:
max_richter 2021-06-07 14:23:59 +02:00
parent 08f7f86cb5
commit 9c13459496
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,6 @@ export PATH="$PATH:$DENO_INSTALL/bin"
## Setup VIM ## Setup VIM
export EDITOR="nvim" export EDITOR="nvim"
export VIMRUNTIME="~/bin/neovim/runtime"
## GO STUFF ## GO STUFF
export PATH=$PATH:/usr/local/go/bin export PATH=$PATH:/usr/local/go/bin

View File

@ -5,7 +5,7 @@ call plug#begin('~/.vim/plugged')
" Declare the list of plugins. " Declare the list of plugins.
Plug 'tpope/vim-sensible' Plug 'tpope/vim-sensible'
Plug 'mhartington/oceanic-next' Plug 'kaicataldo/material.vim', { 'branch': 'main' }
Plug 'ryanoasis/vim-devicons' Plug 'ryanoasis/vim-devicons'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
@ -22,7 +22,8 @@ endif
" Theme " Theme
syntax enable syntax enable
colorscheme OceanicNext let g:material_theme_style = 'ocean-community'
colorscheme material
let mapleader = "," let mapleader = ","