| Category | Vim Script | Lua |
|---|---|---|
| Plugin Manager | junegunn/vim-plug | wbthomason/packer.nvim |
| Fuzzy Finder | junegunn/fzf.vim | nvim-telescope/telescope.nvim |
| Syntax Highlight | sheerun/vim-polyglot | nvim-treesitter/nvim-treesitter |
| Terminal Integrated | voldikss/vim-floaterm | [akin |
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
| # Generals | |
| ## enable undercurl | |
| # https://github.com/AstroNvim/AstroNvim/issues/1336#issuecomment-1317609457 | |
| set -g default-terminal "${TERM}" | |
| set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm' | |
| set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' | |
| ## color correction | |
| # https://github.com/tmux/tmux/wiki/FAQ#how-do-i-use-rgb-colour | |
| set -as terminal-features ",${TERM}*:RGB" | |
| set -as terminal-overrides ",${TERM}*:Tc" |
Check requirements at https://pgmodeler.io/installation.
You will need Qt > 5.9.x installed, full XCode installed, and homebrew installation of postgres and openssl.
brew install qt@5 postgresql@12 openssl@1.1The installation is the same as the instructions at the link above. There are a few path differences due to homebrew installation locations.
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
| function fetchQRCode(content, download = false) { | |
| const endpoint = "https://qr-generator.qrcode.studio/qr/custom"; | |
| const data = { | |
| data: content, | |
| config: { | |
| bgColor: "#FFFFFF", | |
| body: "circle-zebra-vertical", | |
| bodyColor: "#f37239", | |
| brf1: ["fv"], | |
| brf2: [], |
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
| function getKeyInfo(key) { | |
| key = key.toString(); | |
| if (key.length != 16) return false; | |
| sum = 0; | |
| for (let i = 10, len = key.length; i < len; i++) { | |
| sum += Number(key[i]); | |
| } | |
| if (sum < 0 || sum > 54) return false; | |
| sum = Number(key.substr(8, 2)) - sum; | |
| if (sum < 0 || sum > 99) return false; |