diff --git a/sublime/Package Control.sublime-settings b/sublime/Package Control.sublime-settings index 5f1c128..6799229 100644 --- a/sublime/Package Control.sublime-settings +++ b/sublime/Package Control.sublime-settings @@ -37,6 +37,7 @@ "SublimeCodeIntel", "SublimeLinter", "SublimeLinter-cppcheck", + "SublimeLinter-pycodestyle", "SublimeLinter-pyflakes", "SublimeREPL", "SwitchDictionary", diff --git a/sublime/Preferences.sublime-settings b/sublime/Preferences.sublime-settings index fe9fd1f..de271fd 100644 --- a/sublime/Preferences.sublime-settings +++ b/sublime/Preferences.sublime-settings @@ -103,14 +103,16 @@ ], "close_windows_when_empty": false, "color_scheme": "Packages/User/predawn (Flake8Lint).tmTheme", - "dictionary": "Packages/Language - English/en_GB.dic", + "dictionary": "Packages/Language - French - Français/fr_FR.dic", "find_selected_text": true, "font_face": "Fira Code", "font_size": 11, "ignored_packages": [ + "GoSublime", + "HTML-CSS-JS Prettify", "LaTeXTools", - "SublimeREPL", + "SublimeLinter-pycodestyle", "Vintage" ], "ignored_words": diff --git a/sublime/SublimeLinter.sublime-settings b/sublime/SublimeLinter.sublime-settings index 8730ae3..abb82f7 100644 --- a/sublime/SublimeLinter.sublime-settings +++ b/sublime/SublimeLinter.sublime-settings @@ -1,15 +1,23 @@ // SublimeLinter Settings - User { - // Set to true to print extra information in the console. + // Set to true to print extra information in the console. "debug": true, - "linters": { - "cppcheck": { - // "@disable": false, - // "args": [], - "enable": "all", - // "excludes": [], - // "lint_mode": "save" - "std": ["c++11"] - } - } -} + "linters": { + "cppcheck": { + // "@disable": false, + // "args": [], + "enable": "all", + "excludes": ["css"], + // "lint_mode": "save" + "std": ["c++11"] + }, + // "pycodestyle": { + // "executable": "~/.local/bin/pycodestyle" + // }, + "pyflakes": { + "executable": "~/.local/bin/pyflakes", + // suppress all warnings + "filter_errors": "w: " + } + } +} \ No newline at end of file diff --git a/zshrc b/zshrc index 0965dbe..1e8cad3 100644 --- a/zshrc +++ b/zshrc @@ -94,6 +94,7 @@ export EDITOR='vim' # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" alias o="xdg-open > /dev/null 2>&1" +alias awsdf="aws --endpoint-url https://garage.deuxfleurs.fr" # Set Go environment export PATH="$PATH:/usr/local/go/bin"