-
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.
- Loading branch information
0 parents
commit e53aa5c
Showing
6 changed files
with
647 additions
and
0 deletions.
There are no files selected for viewing
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,26 @@ | ||
# Highlighting style for prompt commands. Available values: | ||
# algol, algol_nu, autumn, borland, bw, colorful, default, emacs, friendly, | ||
# fruity, igor, lovelace, manni, monokai, murphy, native, paraiso-dark, | ||
# paraiso-light, pastie, perldoc, rrt, solarized, tango, trac, vim, vs, xcode. | ||
# Preview themes at http://http-prompt.com/themes | ||
command_style = 'solarized' | ||
|
||
# Highlighting style for HTTPie's output. Available values are the same as | ||
# command_style. Set this to None to use HTTPie's default style, which you | ||
# can refer to https://httpie.org/doc#config-file-location | ||
output_style = None | ||
|
||
# The tool used to paginate output. Available values: 'less' and 'more'. | ||
# Note that 'more' does not support ANSI colors. | ||
pager = 'less' | ||
|
||
# What to do when a response has a 'Set-Cookie' header? Available values: | ||
# 'auto': set the cookie automatically and silently | ||
# 'ask': ask the user if they want to set the cookie | ||
# 'off': do nothing with the 'Set-Cookie' header | ||
set_cookies = 'auto' | ||
|
||
# Enable Vi editor mode? Available values: True / False. | ||
# When Vi mode is enabled, you use Vi-like keybindings to edit your commands. | ||
# When it is disabled, you use Emacs keybindings. | ||
vi = 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
(custom-set-variables | ||
;; custom-set-variables was added by Custom. | ||
;; If you edit it by hand, you could mess it up, so be careful. | ||
;; Your init file should contain only one such instance. | ||
;; If there is more than one, they won't work right. | ||
'(custom-safe-themes | ||
(quote | ||
("585942bb24cab2d4b2f74977ac3ba6ddbd888e3776b9d2f993c5704aa8bb4739" default))) | ||
'(package-selected-packages | ||
(quote | ||
(evil-org evil-goggles evil-commentary evil-escape evil-matchit evil-anzu evil-collection org-plus-contrib dap-node dap-mode tern prettier-js spaceline general web-beautify web-mode emmet-mode json-mode yaml-mode php-mode powershell helm-projectile helm projectile evil-numbers evil-surround evil-mc evil company undo-tree diff-hl magit neotree exec-path-from-shell use-package-ensure-system-package gruvbox-theme diminish use-package)))) | ||
(custom-set-faces | ||
;; custom-set-faces was added by Custom. | ||
;; If you edit it by hand, you could mess it up, so be careful. | ||
;; Your init file should contain only one such instance. | ||
;; If there is more than one, they won't work right. | ||
'(evil-goggles-change-face ((t (:inherit diff-removed)))) | ||
'(evil-goggles-delete-face ((t (:inherit diff-removed)))) | ||
'(evil-goggles-paste-face ((t (:inherit diff-added)))) | ||
'(evil-goggles-undo-redo-add-face ((t (:inherit diff-added)))) | ||
'(evil-goggles-undo-redo-change-face ((t (:inherit diff-changed)))) | ||
'(evil-goggles-undo-redo-remove-face ((t (:inherit diff-removed)))) | ||
'(evil-goggles-yank-face ((t (:inherit diff-changed))))) |
Oops, something went wrong.