diff --git a/dotdrop b/dotdrop index 84b049a..a1c5524 160000 --- a/dotdrop +++ b/dotdrop @@ -1 +1 @@ -Subproject commit 84b049a99234551f1ce5b5ea6838d859d4a03e07 +Subproject commit a1c552410771a84cbaf4a82c88a95d2d78f9b2ca diff --git a/dotfiles/bashrc b/dotfiles/bashrc index c428810..e4cae9e 100755 --- a/dotfiles/bashrc +++ b/dotfiles/bashrc @@ -2,7 +2,10 @@ ### 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 LS_COLORS=$LS_COLORS:'di=1;32:' @@ -20,5 +23,3 @@ alias la="ls -la" if [ -f /etc/bashrc ]; then . /etc/bashrc fi - - diff --git a/dotfiles/vimrc b/dotfiles/vimrc index 39a9b25..1e6c851 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -25,10 +25,10 @@ filetype plugin indent on " Plugin Settings let NERDTreeShowHidden=1 -let g:lightline = { - \ 'colorscheme' : 'wombat', - \} +let g:lightline={ 'colorscheme':'wombat', } set laststatus=2 " lightline +let g:onedark_hide_endofbuffer=1 +let g:onedark_terminal_italics=1 " Coloooooors syntax on @@ -83,6 +83,7 @@ cmap W w cmap q1 q! map :NERDTreeToggle +map :NERDTreeToggle " go to line edited, when closed if has("autocmd") @@ -90,6 +91,6 @@ if has("autocmd") \| exe "normal! g'\"" | endif endif -" no clue +" no clue, but didn't bother removing it au BufNewFile,BufRead *.itex set filetype=tex