This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .eslintrc | |
# | |
# DESCRIPTION | |
# Generic configuration file (YAML) for ESLint. | |
# | |
# This configuration is based on the generic | |
# configuration published on GitHub. | |
# | |
# AUTHOR | |
# krnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .flake8 | |
# | |
# AUTHOR | |
# krnd | |
# | |
# VERSION | |
# 1.4 | |
# | |
# SEE ALSO | |
# http://flake8.pycqa.org/en/latest/user/options.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .style.yapf | |
# | |
# DESCRIPTION | |
# Configuration file for the python formatter yapf. | |
# | |
# This configuration is based on the generic | |
# configuration published on GitHub. | |
# | |
# AUTHOR | |
# krnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .editorconfig | |
# | |
# AUTHOR | |
# krnd | |
# | |
# VERSION | |
# 1.1 | |
# | |
# SEE ALSO | |
# https://editorconfig.org/#file-format-details |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"plugins": [ | |
"plugins/markdown" | |
], | |
"recursionDepth": 10, | |
"source": { | |
"include": ["./"], | |
"exclude": [], | |
"includePattern": ".+\\.js(doc)?$", | |
"excludePattern": "(^|\\/|\\\\)--" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file gruntfile.js | |
* | |
* @summary Configurable gruntfile for the game Screeps. | |
* @description | |
* Gruntfile to upload code to an arbitrary Screeps server and generating | |
* a documentation of the player code using `jsdoc`. The parameters of the | |
* grunt tasks are configurable using the custom configuration file. | |
* | |
* @author krnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ./unity-git-project-setup-local-bare.sh | |
# (bash) | |
# | |
# DESCRIPTION | |
# Initialize Unity project for git and create local | |
# bare repo to use as remote. | |
# | |
# USAGE | |
# Copy the script into the Unity projects root | |
# directory and run it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .eslintignore | |
# | |
# DESCRIPTION | |
# Generic configuration file specifying intentionally | |
# unlinted files when using ESLint. | |
# | |
# This configuration is based on the generic | |
# configuration published on GitHub. | |
# | |
# AUTHOR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" .vimrc | |
" | |
" AUTHOR | |
" krnd | |
" | |
" VERSION | |
" 1.2 | |
" | |
" SEE ALSO | |
" http://vimdoc.sourceforge.net/htmldoc/options.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
// =====================< General >===================== | |
"final_space": true, | |
"osc99": true, | |
// =====================< Console Title >=============== | |
/* REVISIT */ | |
"console_title": true, | |
"console_title_style": "folder", | |
"console_title_template": "{{ .Shell }} in {{ .Folder }}", |
OlderNewer