Minor changes

This commit is contained in:
Marco Thomas
2019-12-16 16:46:40 +01:00
parent b5f0ffae0c
commit 4d1526edb8
3 changed files with 10 additions and 8 deletions

Submodule dotdrop updated: 84b049a992...a1c5524107

View File

@@ -2,7 +2,10 @@
### bashrc from Marc ### ### bashrc from Marc ###
######################## ########################
export PS1="\[\033[0;32m\]\u\[\033[m\]@\h: \[\033[1;34m\]\w\[\033[m\] \n> " PS2="\n>"
NAME="\[\033[0;32m\]\u\[\033[m\]"
DIR="\[\033[1;34m\]\w\[\033[m\]"
export PS1="${NAME}@\h: ${DIR} ${PS2} "
# Colored Files # Colored Files
LS_COLORS=$LS_COLORS:'di=1;32:' LS_COLORS=$LS_COLORS:'di=1;32:'
@@ -20,5 +23,3 @@ alias la="ls -la"
if [ -f /etc/bashrc ]; then if [ -f /etc/bashrc ]; then
. /etc/bashrc . /etc/bashrc
fi fi

View File

@@ -25,10 +25,10 @@ filetype plugin indent on
" Plugin Settings " Plugin Settings
let NERDTreeShowHidden=1 let NERDTreeShowHidden=1
let g:lightline = { let g:lightline={ 'colorscheme':'wombat', }
\ 'colorscheme' : 'wombat',
\}
set laststatus=2 " lightline set laststatus=2 " lightline
let g:onedark_hide_endofbuffer=1
let g:onedark_terminal_italics=1
" Coloooooors " Coloooooors
syntax on syntax on
@@ -83,6 +83,7 @@ cmap W w
cmap q1 q! cmap q1 q!
map <C-t> :NERDTreeToggle<CR> map <C-t> :NERDTreeToggle<CR>
map <F2> :NERDTreeToggle<CR>
" go to line edited, when closed " go to line edited, when closed
if has("autocmd") if has("autocmd")
@@ -90,6 +91,6 @@ if has("autocmd")
\| exe "normal! g'\"" | endif \| exe "normal! g'\"" | endif
endif endif
" no clue " no clue, but didn't bother removing it
au BufNewFile,BufRead *.itex set filetype=tex au BufNewFile,BufRead *.itex set filetype=tex