Compare commits

..

No commits in common. "cce8541142dc33c221ab68672ed8eed19a4f02c7" and "cedfce5a8fcdd496e8ae4ba12ba5cc8b21e5eb3c" have entirely different histories.

2 changed files with 0 additions and 8 deletions

View File

@ -93,7 +93,6 @@ let g:startify_list_order = [
let g:python3_host_prog = '/usr/bin/python3' let g:python3_host_prog = '/usr/bin/python3'
" Neomake " Neomake
let g:neomake_python_exe = '/usr/bin/python3'
let g:neomake_python_enabled_makers = ['flake8', 'mypy'] let g:neomake_python_enabled_makers = ['flake8', 'mypy']
autocmd! BufWritePost * Neomake autocmd! BufWritePost * Neomake

View File

@ -5,12 +5,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
APT=`command -v apt` APT=`command -v apt`
DNF=`command -v dnf` DNF=`command -v dnf`
function update_pkg_repos() {
if [[ -n "$APT" ]]; then
sudo apt update
fi
}
function check_or_install() { function check_or_install() {
CMD=`command -v $1` CMD=`command -v $1`
PKG=$2 PKG=$2
@ -111,7 +105,6 @@ function setup_topydo() {
# Set up a generic bin directory for scripts and tools # Set up a generic bin directory for scripts and tools
mkdir -p $HOME/bin mkdir -p $HOME/bin
mkdir -p $HOME/.config mkdir -p $HOME/.config
update_pkg_repos
install_build_tools install_build_tools
setup_neovim setup_neovim
setup_git setup_git