- Computer Networks From Scratch: https://www.networksfromscratch.com/
NeoVim
- Switching init.vim to init.lua: https://github.com/svermeulen/vimpeccable
Various apps I don't know about:
Sample Neovim Lua Configurations:
version: 2 | |
root-markers: | |
- .git/ | |
lint-debounce: 1s | |
tools: | |
sh-shellcheck: &sh-shellcheck | |
lint-command: 'shellcheck -f gcc -x' | |
lint-source: 'shellcheck' | |
lint-formats: | |
- '%f:%l:%c: %trror: %m' |
NeoVim
Various apps I don't know about:
Sample Neovim Lua Configurations:
" Start terminal in insert mode: | |
autocmd TermOpen * IndentLinesDisable | startinsert | |
" In NeoVim, lookup `terminal-status` | |
:help terminal-status | |
"This will give you information on how to auto-close the terminal on succesful exit: | |
" | |
" From the Neovim help documentation: |
[The following useful is old. I haven't been able to update it. It may or may not work. And read all comments below before executing commands.]
Here is a photo of the default layout: https://github.com/c4software/xd75re/blob/master/layout/default/default_layout_all_layer.jpg
Create you keyboard layout here: https://config.qmk.fm/#/xd75/LAYOUT_ortho_5x15 Click "Load Default" to bring up the default layout. Edit it or use your own layout. Download the layout to a file because you will want to edit it later again. The layout
unmap <C-f> | |
unmap <M-d> | |
unmap <C-g> |
#!/usr/bin/env bash | |
# -*- bash -*- | |
# | |
cmd="$@" | |
if [[ -z "$@" ]] | |
then | |
rlwrap luajit | |
else | |
luajit "$@" |
#!/usr/bin/env bash | |
# -*- bash -*- | |
# | |
cmd="$@" | |
if [[ -z "$@" ]] | |
then | |
rlwrap lua | |
else | |
luajit "$@" |