Skip to content

Commit

Permalink
Merge pull request #357 from iAGorynT/iAGorynT-Code-Snippet-Changes
Browse files Browse the repository at this point in the history
Vim Plugin Additions / Code Cleanup
  • Loading branch information
iAGorynT authored Aug 28, 2024
2 parents 36cb5c5 + 14a1aed commit 34d0f4a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions DotFiles/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,19 @@ augroup ProjectDrawer
autocmd VimEnter * if argc() == 0 | Vexplore | else | Vexplore | wincmd l | endif
augroup END

" Vim-Plugins
call plug#begin()

" List plugins here
Plug 'ryanoasis/vim-devicons'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'

call plug#end()

" Enable/Disable use of PowerLine Fonts
let g:airline_powerline_fonts = 1

" enable/disable detection of whitespace errors (mixing of spaces and tabs)
let g:airline#extensions#whitespace#enabled = 0

4 changes: 2 additions & 2 deletions ShellScripts/Aliasdoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ while true; do

# Check if line begins with Category Start
if [[ $line == *"$catstart"* ]]; then
start=true
start=true
fi

# If start is true, display the line
Expand All @@ -85,7 +85,7 @@ while true; do

# Check if line begins with Category End
if [[ $line == *"$catend"* ]]; then
break
break
fi
done < "$zshrcfile"

Expand Down

0 comments on commit 34d0f4a

Please sign in to comment.