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
// eslint-disable-next-line eslint-comments/disable-enable-pair | |
/* eslint-disable unicorn/prefer-module */ | |
module.exports = { | |
extends: [ | |
"eslint:recommended", | |
"plugin:eslint-comments/recommended", | |
"plugin:import/errors", | |
"plugin:import/warnings", | |
"plugin:jest/recommended", | |
"plugin:jsx-a11y/recommended", |
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
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Challenge-service API", | |
"version": "1.0" | |
}, | |
"servers": [ | |
{ | |
"url": "http://localhost:8080", | |
"description": "Generated server url" |
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
# if [ -n "$DISPLAY" -a "$TERM" = "xterm" ]; then | |
# export TERM=xterm-256color | |
# fi | |
# Most themes use this option. | |
setopt promptsubst | |
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
alias tmux='TERM=screen-256color tmux' | |
alias vim='vim -w ~/.vimlog "$@"' | |
# alias gvim='gvim -w ~/.vimlog "$@"' | |
# | |
#временно, тормоза из-за zsh-users/zsh-autosuggestions | |
#alias mc='mc -u' | |
alias ls="ls --color=auto" |
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
setopt append_history | |
setopt extended_history # save timestamp | |
#setopt inc_append_history # add history immediately after typing a command | |
setopt no_hist_beep | |
setopt hist_ignore_all_dups | |
setopt hist_expire_dups_first | |
setopt hist_save_no_dups | |
setopt hist_find_no_dups | |
# Use the same history file for all sessions, conflicts with inc_append_history | |
setopt share_history |
OlderNewer