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
diff --git a/zsh-vi-mode.zsh b/zsh-vi-mode.zsh | |
index 48aaa5a..101b819 100644 | |
--- a/zsh-vi-mode.zsh | |
+++ b/zsh-vi-mode.zsh | |
@@ -3470,7 +3470,7 @@ function zvm_init() { | |
zvm_bindkey vicmd '^[[3~' delete-char | |
# History search | |
- zvm_bindkey viins '^R' history-incremental-search-backward | |
+ # zvm_bindkey viins '^R' history-incremental-search-backward |
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
#include <bits/stdc++.h> | |
using namespace std; | |
using ll = long long; | |
int main() { | |
ios::sync_with_stdio(false); | |
cin.tie(nullptr); | |
int n, k, c; | |
cin >> n >> k >> c; |
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
#!/bin/sh | |
ZDOTDIR=$HOME/.config/zsh | |
git clone https://github.com/zsh-users/zsh-autosuggestions $ZDOTDIR/zsh-autosuggestions | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZDOTDIR/zsh-syntax-highlighting | |
git clone https://github.com/jeffreytse/zsh-vi-mode.git $ZDOTDIR/zsh-vi-mode | |
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $ZDOTDIR/powerlevel10k | |
curl -sSL https://raw.githubusercontent.com/junegunn/fzf/master/shell/key-bindings.zsh > $ZDOTDIR/key-bindings.zsh |
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
@media (prefers-color-scheme: dark) { | |
body { | |
background-color: rgb(24, 26, 27) !important; | |
background-image: none !important; | |
} | |
.fixed-bg[data-v-d112ac46] { | |
background-color: rgb(24, 26, 27) !important; | |
background-image: none !important; | |
} | |
} |
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
// ==UserScript== | |
// @name cnblog clean looking 博客园干净外观 | |
// @namespace https://blog.csdn.net/qq1337715208/article/details/108289826 | |
// @version 0.3 | |
// @description disable user js and background image | |
// @author jin & Thallium54 | |
// @match *://*.cnblogs.com/* | |
// @resource CSS main.css | |
// @grant GM_addStyle | |
// @grant GM_getResourceText |