neovim (nvim) settings for associating *.jbuilder files to ruby language for LazyVim using filetype function.
To reach that we need to tune up nvim-treesitter plugin options.
| # ~/workspace/your_project/.aliases.sh | |
| # Your custom commands to make `dev start` and `dev stop` commands works | |
| export DEV_START="bin/docker up && overmind start -f Procfile.dev" | |
| export DEV_STOP="overmind quit && bin/docker down" | |
| # any other project's specific commands or aliases | |
| alias rgd="bin/rails docs_generate" |
neovim (nvim) settings for associating *.jbuilder files to ruby language for LazyVim using filetype function.
To reach that we need to tune up nvim-treesitter plugin options.
| import json | |
| import time | |
| import base64 | |
| import os | |
| from algosdk.v2client import algod | |
| from algosdk import mnemonic | |
| from algosdk.future import transaction | |
| from algosdk import encoding | |
| from algosdk import account | |
| from algosdk import constants |