time has passes (mostly sublime)

This commit is contained in:
LUXEY Adrien 2021-03-04 12:01:04 +01:00
parent d5e7cdecef
commit eedcf7a41c
4 changed files with 26 additions and 14 deletions

View file

@ -37,6 +37,7 @@
"SublimeCodeIntel", "SublimeCodeIntel",
"SublimeLinter", "SublimeLinter",
"SublimeLinter-cppcheck", "SublimeLinter-cppcheck",
"SublimeLinter-pycodestyle",
"SublimeLinter-pyflakes", "SublimeLinter-pyflakes",
"SublimeREPL", "SublimeREPL",
"SwitchDictionary", "SwitchDictionary",

View file

@ -103,14 +103,16 @@
], ],
"close_windows_when_empty": false, "close_windows_when_empty": false,
"color_scheme": "Packages/User/predawn (Flake8Lint).tmTheme", "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, "find_selected_text": true,
"font_face": "Fira Code", "font_face": "Fira Code",
"font_size": 11, "font_size": 11,
"ignored_packages": "ignored_packages":
[ [
"GoSublime",
"HTML-CSS-JS Prettify",
"LaTeXTools", "LaTeXTools",
"SublimeREPL", "SublimeLinter-pycodestyle",
"Vintage" "Vintage"
], ],
"ignored_words": "ignored_words":

View file

@ -1,15 +1,23 @@
// SublimeLinter Settings - User // 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, "debug": true,
"linters": { "linters": {
"cppcheck": { "cppcheck": {
// "@disable": false, // "@disable": false,
// "args": [], // "args": [],
"enable": "all", "enable": "all",
// "excludes": [], "excludes": ["css"],
// "lint_mode": "save" // "lint_mode": "save"
"std": ["c++11"] "std": ["c++11"]
} },
} // "pycodestyle": {
} // "executable": "~/.local/bin/pycodestyle"
// },
"pyflakes": {
"executable": "~/.local/bin/pyflakes",
// suppress all warnings
"filter_errors": "w: "
}
}
}

1
zshrc
View file

@ -94,6 +94,7 @@ export EDITOR='vim'
# alias zshconfig="mate ~/.zshrc" # alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh" # alias ohmyzsh="mate ~/.oh-my-zsh"
alias o="xdg-open > /dev/null 2>&1" alias o="xdg-open > /dev/null 2>&1"
alias awsdf="aws --endpoint-url https://garage.deuxfleurs.fr"
# Set Go environment # Set Go environment
export PATH="$PATH:/usr/local/go/bin" export PATH="$PATH:/usr/local/go/bin"