Compare commits

...

2 Commits

2 changed files with 13 additions and 1 deletions

View File

@ -238,6 +238,16 @@ alias cls=clear
alias cpr='cp -r' alias cpr='cp -r'
alias dc='gdc' alias dc='gdc'
alias duh='du -csh' alias duh='du -csh'
dos2unix_all() {
local path="$1"
if [[ $path == "" ]]; then
path="$PWD"
fi
find $path -type f -exec dos2unix '{}' '+'
}
alias d2u='dos2unix_all'
alias e='open_explorer_here "$PWD"' alias e='open_explorer_here "$PWD"'
alias exp='echo "Use e instead."' alias exp='echo "Use e instead."'
alias f='fg' alias f='fg'

4
.vimrc
View File

@ -175,7 +175,9 @@ let g:campo_ctags_exclude = ['*.txt', '*.config', '.cache', 'run_tree']
" * You can see a list of languages with `ctags --list-languages` " * You can see a list of languages with `ctags --list-languages`
" * For C# you have to escape the ampersand like so: `--languages=C\\#` " * For C# you have to escape the ampersand like so: `--languages=C\\#`
" * Exclude directories using g:campo_ctags_exclude " * Exclude directories using g:campo_ctags_exclude
let g:campo_custom_ctags_args = "" "
" We'll do it recursively by default.
let g:campo_custom_ctags_args = "-R"
" Set extra paths to use when searching for ctags files. By default the current " Set extra paths to use when searching for ctags files. By default the current