Added pylint config

This commit is contained in:
Wryn Wagner
2020-04-02 12:40:26 -06:00
parent 960715c753
commit 18f5a9022c
2 changed files with 595 additions and 0 deletions

8
setup
View File

@ -53,11 +53,19 @@ function SYMLINK_CONFIG() {
ln -s "$HOME/.wryn/config/$1/$2" "$HOME/.config/$1/$2";
}
function SYMLINK_RC() {
# $1 = path (from .wryn) to rc file
# $2 = system rc filename
[ ! -f "$HOME/.config/$2" ] && [ -f "$HOME/.wryn/$1" ] && ln -s "$HOME/.wryn/$1" "$HOME/.config/$2";
}
SYMLINK_CONFIG "compton" "compton.conf";
SYMLINK_CONFIG "i3" "config";
SYMLINK_CONFIG "kitty" "kitty.conf";
SYMLINK_CONFIG "kitty" "theme.conf";
SYMLINK_RC "config/pylint/pylintrc" "pylintrc";
function terminfo_setup() {
for file in $(find "$HOME/.wryn/config/terminfo" -type f); do
tic -x $file;