time has passes (mostly sublime)
This commit is contained in:
parent
d5e7cdecef
commit
eedcf7a41c
4 changed files with 26 additions and 14 deletions
|
@ -37,6 +37,7 @@
|
|||
"SublimeCodeIntel",
|
||||
"SublimeLinter",
|
||||
"SublimeLinter-cppcheck",
|
||||
"SublimeLinter-pycodestyle",
|
||||
"SublimeLinter-pyflakes",
|
||||
"SublimeREPL",
|
||||
"SwitchDictionary",
|
||||
|
|
|
@ -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":
|
||||
|
|
|
@ -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: "
|
||||
}
|
||||
}
|
||||
}
|
1
zshrc
1
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"
|
||||
|
|
Loading…
Reference in a new issue