From b5f0ffae0c13a6102a6e5e22a0fa58932b0db66c Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Fri, 13 Dec 2019 06:27:44 -0500 Subject: [PATCH] Fix lightline statusbar --- dotfiles/bashrc | 9 ++++----- dotfiles/vimrc | 16 ++++++++++------ 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/dotfiles/bashrc b/dotfiles/bashrc index 35b390c..c428810 100755 --- a/dotfiles/bashrc +++ b/dotfiles/bashrc @@ -1,11 +1,10 @@ -######################### -### .bashrc from Marc ### -######################### +######################## +### bashrc from Marc ### +######################## -# command line export PS1="\[\033[0;32m\]\u\[\033[m\]@\h: \[\033[1;34m\]\w\[\033[m\] \n> " -# colored files +# Colored Files LS_COLORS=$LS_COLORS:'di=1;32:' export LS_COLORS diff --git a/dotfiles/vimrc b/dotfiles/vimrc index fe17af5..39a9b25 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -1,20 +1,23 @@ -" ######################## -" ### .vimrc from Marc ### -" ######################## +" ####################### +" ### vimrc from Marc ### +" ####################### " Vundle Plugin Manager - START " Required set nocompatible set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() + " Plugins Plugin 'VundleVim/Vundle.vim' Plugin 'jiangmiao/auto-pairs' Plugin 'scrooloose/nerdtree' Plugin 'editorconfig/editorconfig-vim' + " Colorscheme Plugin 'joshdick/onedark.vim' Plugin 'itchyny/lightline.vim' + " Required call vundle#end() filetype plugin indent on @@ -22,12 +25,13 @@ filetype plugin indent on " Plugin Settings let NERDTreeShowHidden=1 - -" Coloooooors -syntax on let g:lightline = { \ 'colorscheme' : 'wombat', \} +set laststatus=2 " lightline + +" Coloooooors +syntax on colorscheme onedark filetype on filetype indent plugin on