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 <stddef.h> | |
#include <stdio.h> | |
#define STR(x) #x | |
typedef struct | |
{ | |
// === funny little waste of memory due to alignment (or lack thereof) === | |
// my CPU can only address bytes in multiples of four | |
// using a non-multiple of 4 number of bytes for the "name" field makes |
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
" ====== here lies vim-plug stuff ======= | |
call plug#begin('~/.vim/plugged') | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'tpope/vim-fugitive' | |
Plug 'daskol/nvim-bnf', { 'do': 'go install ./cmd/nvim-bnf' } | |
Plug 'dracula/vim', {'as': 'dracula'} | |
Plug 'rust-lang/rust.vim' | |
Plug 'pangloss/vim-javascript' | |
Plug 'github/copilot.vim' | |
Plug 'preservim/nerdtree' |
OlderNewer