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> " 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:' LS_COLORS=$LS_COLORS:'di=1;32:'
export LS_COLORS export LS_COLORS

View File

@@ -1,20 +1,23 @@
" ######################## " #######################
" ### .vimrc from Marc ### " ### vimrc from Marc ###
" ######################## " #######################
" Vundle Plugin Manager - START " Vundle Plugin Manager - START
" Required " Required
set nocompatible set nocompatible
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() call vundle#begin()
" Plugins " Plugins
Plugin 'VundleVim/Vundle.vim' Plugin 'VundleVim/Vundle.vim'
Plugin 'jiangmiao/auto-pairs' Plugin 'jiangmiao/auto-pairs'
Plugin 'scrooloose/nerdtree' Plugin 'scrooloose/nerdtree'
Plugin 'editorconfig/editorconfig-vim' Plugin 'editorconfig/editorconfig-vim'
" Colorscheme " Colorscheme
Plugin 'joshdick/onedark.vim' Plugin 'joshdick/onedark.vim'
Plugin 'itchyny/lightline.vim' Plugin 'itchyny/lightline.vim'
" Required " Required
call vundle#end() call vundle#end()
filetype plugin indent on filetype plugin indent on
@@ -22,12 +25,13 @@ filetype plugin indent on
" Plugin Settings " Plugin Settings
let NERDTreeShowHidden=1 let NERDTreeShowHidden=1
" Coloooooors
syntax on
let g:lightline = { let g:lightline = {
\ 'colorscheme' : 'wombat', \ 'colorscheme' : 'wombat',
\} \}
set laststatus=2 " lightline
" Coloooooors
syntax on
colorscheme onedark colorscheme onedark
filetype on filetype on
filetype indent plugin on filetype indent plugin on