I cannot guarantee the accuracy of the information and nor being held accountable to any issue if somehow this guide ends up on the internet.
This file contains hidden or 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
| { | |
| config, | |
| pkgs, | |
| lib, | |
| ... | |
| }: | |
| let | |
| groups = [ | |
| "variable" |
This file contains hidden or 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
| # Modus-Vivendi-Tinted theme for Kakoune | |
| # Extended with Tree-sitter and LSP support | |
| # Colors from official GNU Emacs Modus Themes palette | |
| # Color palette - Official Modus Vivendi Tinted colors | |
| declare-option str bg_main 'rgb:0d0e1c' | |
| declare-option str bg_dim 'rgb:1d2235' | |
| declare-option str fg_main 'rgb:ffffff' | |
| declare-option str fg_dim 'rgb:989898' | |
| declare-option str bg_alt 'rgb:4a4f69' |
This file contains hidden or 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
| { | |
| description = "Elixir Phoenix Dev Environment"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
| flake-parts.url = "github:hercules-ci/flake-parts"; | |
| process-compose.url = "github:Platonic-Systems/process-compose-flake"; | |
| services-flake.url = "github:juspay/services-flake"; | |
| git-hooks.url = "github:cachix/git-hooks.nix"; | |
| }; |
This file contains hidden or 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
| @nix { "action": "setPhase", "phase": "unpackPhase" } | |
| unpacking sources | |
| unpacking source archive /nix/store/4zyifzdw3d8gwwk5r61xsiphvydnrjpy-source | |
| source root is source | |
| @nix { "action": "setPhase", "phase": "patchPhase" } | |
| patching sources | |
| patching script interpreter paths in configure | |
| configure: interpreter directive changed from "#!/bin/bash" to "/nix/store/mh2ga0rzccp2749ar62gmsij8bfajykj-bash-5.2-p15/bin/bash" | |
| @nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } | |
| updateAutotoolsGnuConfigScriptsPhase |
This file contains hidden or 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
| # Maintainer: Honghao Li <im@rasphino.cn> | |
| # Maintainer: Damien Biasotto <damien.biasotto@gmail.com> | |
| pkgname=sublime-merge | |
| pkgver=2020 | |
| pkgrel=1 | |
| pkgdesc="Meet a new Git Client, from the makers of Sublime Text" | |
| arch=('x86_64') | |
| url="https://www.sublimemerge.com" | |
| license=('custom') |
This file contains hidden or 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
| ;;Trigger a refresh of vc-modeline on some magit functions | |
| (require 'magit) | |
| (defun refresh-vc-state (&rest r) (message "%S" (current-buffer))(vc-refresh-state)) | |
| (advice-add 'magit-checkout-revision :after 'refresh-vc-state '((name . "magit-refresh-on-checkout-revision"))) | |
| (advice-add 'magit-branch-create :after 'refresh-vc-state '((name . "magit-refresh-on-branch-create"))) | |
| (advice-add 'magit-branch-and-checkout :after 'refresh-vc-state '((name . "magit-refresh-on-checkout-and-branch"))) | |
| (advice-add 'magit-branch-or-checkout :after 'refresh-vc-state '((name . "magit-refresh-on-branch-or-checkout"))) |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Add or remove keywords here | |
| KEYWORDS_REGEX="var_dump\(|die\(?|Zend_Debug::|Mage::log\(|print_r\(|console\.(debug|info|log|warn)\(" | |
| # Add extensions to check here | |
| EXTENSIONS_REGEX="(.php$|.phtml$|.js$)" | |
| ERRORS_BUFFER="" | |
| TEXT_DEFAULT="\\033[0;39m" | |
| TEXT_INFO="\\033[1;32m" |
NewerOlder