create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| -- put this file somewhere in your nvim config, like: ~/.config/nvim/lua/config/lua-lsp.lua | |
| -- usage: require'lspconfig'.sumneko_lua.setup(require("config.lua-lsp")) | |
| local library = {} | |
| local path = vim.split(package.path, ";") | |
| -- this is the ONLY correct way to setup your path | |
| table.insert(path, "lua/?.lua") | |
| table.insert(path, "lua/?/init.lua") |
| /** | |
| * ============================================================================ | |
| * Constants for later reference | |
| * ============================================================================ | |
| */ | |
| const WCAG_MINIMUM_RATIOS = [ | |
| ['AA Large', 3], | |
| ['AA', 4.5], | |
| ['AAA', 7], |
| /** | |
| * Calculates numbers to the mathmatical power (exponent) | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @param int $number The number to increase | |
| * @param int $exponent The power to increase the number by | |
| * | |
| * @return int The new number | |
| */ |
| " 0 preamble ============================================================== {{{ | |
| " | |
| " There is a great organization scheme in place here. If you run the | |
| " :options command in Vim, you see a list of all the options that you | |
| " can set, along with their current settings and a brief description of | |
| " them. The great thing about this scheme is that--for better or | |
| " worse--it sets up a system which can organize all my settings. I've | |
| " decided to organize everything below thus, throwing ancillary things | |
| " (my own mappings, plugin settings, and so on) where it makes sense. | |
| " |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"