Fix lightline statusbar

This commit is contained in:
Marco Thomas
2019-12-13 06:27:44 -05:00
parent 214a56a836
commit b5f0ffae0c
2 changed files with 14 additions and 11 deletions

View File

@@ -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

View File

@@ -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