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
| LSB_RELEASE := $(shell lsb_release -cs) | |
| WHOAMI := $(shell whoami) | |
| SYSTEM := $(shell uname -s) | |
| ARCH := $(shell uname -m) | |
| NODE_VERSION := 14 | |
| PHOENIX_VERSION := 1.5.8 | |
| install-nodejs: | |
| cd /tmp/ | |
| curl -sL https://deb.nodesource.com/setup_$(NODE_VERSION).x -o nodesource_setup.sh |
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
| -- 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") |
OlderNewer