-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Putting Neo vim, zim, etc on a diet (#19)
* feat: From exa to eza * fix: Some issues in the logs * fix: The configuration file is con config/evironments/local/ansible.cfg * fix: Pedantic YAML * chore: Puthon interpreter configuration * chore: Checkpoint * chore: Sorted * feat: Specific features for github * feat: atuing support and zsh profiling * feat: New plugins * fix: The error in the help rule * chore: Reduce the load of the prompt * feat: git configuration to re-use Tower * chore: Putting Neovim on a diet * feat: Deletes the support for fzf on vim and zim --------- Co-authored-by: javier.juarez <[email protected]>
- Loading branch information
Showing
14 changed files
with
93 additions
and
76 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[defaults] | ||
ansible_python_interpreter="/usr/bin/env python" | ||
force_color = True | ||
deprecation_warnings = True | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
all: | ||
hosts: | ||
localhost | ||
... |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#set -u -o pipefail | ||
#set -x | ||
|
||
|
||
BROWSER=${BROWSER:-'Firefox'} | ||
GIT_ORG=${GIT_ORG:-'IBM-Q-Software'} | ||
GIT_REPO=${GIT_REPO:-'cloud-deployment'} | ||
|
||
|
||
github::open_issue() { | ||
local -r git_issues="https://github.ibm.com/${GIT_ORG}/${GIT_REPO}/issues" | ||
local -r issue="${1}" | ||
|
||
[[ -n "${issue}" ]] || return 0 | ||
case "${OSTYPE}" in | ||
darwin*) open -a "${BROWSER}" "${git_issues}/${issue}" ;; | ||
*) echo "There's no support for ${OSTYPE} yet..." ;; | ||
esac | ||
} | ||
|
||
# autoloads | ||
autoload github::open_issue | ||
|
||
# aliases | ||
alias goi='github::open_issue' |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,3 @@ | ||
[user] | ||
name = javier.juarez | ||
email = [email protected] | ||
|
||
[color] | ||
diff = auto | ||
status = auto | ||
branch = auto | ||
interactive = auto | ||
ui = true | ||
pager = true | ||
|
||
[alias] | ||
ci = commit | ||
co = checkout | ||
|
@@ -23,43 +11,60 @@ | |
ts = tag --sort=-committerdate | ||
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=iso8601-strict | ||
|
||
[github] | ||
user = jjuarez | ||
[branch] | ||
# sort = -committerdate | ||
|
||
[push] | ||
default = matching | ||
[color] | ||
diff = auto | ||
status = auto | ||
branch = auto | ||
interactive = auto | ||
ui = true | ||
pager = true | ||
|
||
[core] | ||
excludesfile = ~/.gitignore_global | ||
fileMode = false | ||
eol = lf | ||
autocrlf = input | ||
|
||
[help] | ||
autocorrect = 0 | ||
|
||
[colour] | ||
ui = 1 | ||
[credential] | ||
helper = cache | ||
|
||
[diff] | ||
tool = vimdiff | ||
|
||
[difftool] | ||
prompt = false | ||
|
||
[credential] | ||
helper = cache | ||
[filter "lfs"] | ||
clean = git-lfs clean -- %f | ||
smudge = git-lfs smudge -- %f | ||
process = git-lfs filter-process | ||
required = true | ||
|
||
[format] | ||
pretty = oneline | ||
|
||
[user] | ||
name = JJ | ||
email = [email protected] | ||
|
||
[github] | ||
user = jjuarez | ||
|
||
[help] | ||
autocorrect = 0 | ||
|
||
[init] | ||
defaultBranch = main | ||
|
||
[pull] | ||
rebase = true | ||
|
||
[filter "lfs"] | ||
clean = git-lfs clean -- %f | ||
smudge = git-lfs smudge -- %f | ||
process = git-lfs filter-process | ||
required = true | ||
[init] | ||
defaultBranch = master | ||
[push] | ||
default = matching | ||
[commit] | ||
gpgsign = false | ||
[gpg] | ||
program = /usr/local/MacGPG2/bin/gpg2 |
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
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
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
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