Compare commits
4 commits
1768bc0c3f
...
a13427da06
Author | SHA1 | Date | |
---|---|---|---|
a13427da06 | |||
c3f93023dd | |||
a84e521291 | |||
|
873c3cc7f6 |
3 changed files with 33 additions and 5 deletions
21
.pre-commit-config.yaml
Normal file
21
.pre-commit-config.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v5.0.0
|
||||||
|
hooks:
|
||||||
|
- id: check-ast
|
||||||
|
- id: check-yaml
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: trailing-whitespace
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- id: check-byte-order-marker
|
||||||
|
- repo: https://github.com/igorshubovych/markdownlint-cli
|
||||||
|
rev: v0.42.0
|
||||||
|
hooks:
|
||||||
|
- id: markdownlint
|
||||||
|
args: ["--disable", "MD013", "--"]
|
||||||
|
- repo: https://github.com/koalaman/shellcheck-precommit
|
||||||
|
rev: v0.10.0
|
||||||
|
hooks:
|
||||||
|
- id: shellcheck
|
||||||
|
...
|
5
.vimrc
5
.vimrc
|
@ -73,6 +73,11 @@ let g:blamer_prefix = ' > '
|
||||||
let g:gitgutter_highlight_lines = 1
|
let g:gitgutter_highlight_lines = 1
|
||||||
let g:gitgutter_highlight_linenrs = 1
|
let g:gitgutter_highlight_linenrs = 1
|
||||||
let g:goyo_width = 120
|
let g:goyo_width = 120
|
||||||
|
let g:netrw_banner = 0
|
||||||
|
let g:netrw_keepdir = 0
|
||||||
|
let g:netrw_liststyle = 3
|
||||||
|
let g:netrw_localcopydircmd = 'cp -r'
|
||||||
|
let g:netrw_winsize = 20
|
||||||
let g:startify_fortune_use_unicode = 1
|
let g:startify_fortune_use_unicode = 1
|
||||||
let g:startify_session_autoload = 1
|
let g:startify_session_autoload = 1
|
||||||
let g:startify_session_persistence = 1
|
let g:startify_session_persistence = 1
|
||||||
|
|
12
.zshrc
12
.zshrc
|
@ -5,6 +5,8 @@ setopt HIST_IGNORE_SPACE
|
||||||
setopt HIST_FIND_NO_DUPS
|
setopt HIST_FIND_NO_DUPS
|
||||||
setopt HIST_SAVE_NO_DUPS
|
setopt HIST_SAVE_NO_DUPS
|
||||||
|
|
||||||
|
zstyle :omz:plugins:keychain agents gpg,ssh
|
||||||
|
zstyle :omz:plugins:keychain options --quiet
|
||||||
zstyle :omz:plugins:ssh-agent agent-forwarding yes
|
zstyle :omz:plugins:ssh-agent agent-forwarding yes
|
||||||
zstyle :omz:plugins:ssh-agent lazy yes
|
zstyle :omz:plugins:ssh-agent lazy yes
|
||||||
zstyle :omz:plugins:ssh-agent lifetime 8h
|
zstyle :omz:plugins:ssh-agent lifetime 8h
|
||||||
|
@ -12,16 +14,16 @@ zstyle :omz:plugins:ssh-agent lifetime 8h
|
||||||
source $HOME/.local/lib/zsh/antigen/bin/antigen.zsh
|
source $HOME/.local/lib/zsh/antigen/bin/antigen.zsh
|
||||||
antigen use oh-my-zsh
|
antigen use oh-my-zsh
|
||||||
antigen bundles <<EOBUNDLES
|
antigen bundles <<EOBUNDLES
|
||||||
git
|
|
||||||
git-extras
|
|
||||||
tmux
|
|
||||||
command-not-found
|
command-not-found
|
||||||
|
common-aliases
|
||||||
debian
|
debian
|
||||||
direnv
|
direnv
|
||||||
|
git
|
||||||
|
git-extras
|
||||||
gpg-agent
|
gpg-agent
|
||||||
|
keychain
|
||||||
pip
|
pip
|
||||||
ssh-agent
|
tmux
|
||||||
common-aliases
|
|
||||||
MichaelAquilina/zsh-you-should-use
|
MichaelAquilina/zsh-you-should-use
|
||||||
svenXY/timewarrior
|
svenXY/timewarrior
|
||||||
voronkovich/gitignore.plugin.zsh
|
voronkovich/gitignore.plugin.zsh
|
||||||
|
|
Loading…
Add table
Reference in a new issue