(add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))
(add-to-list 'default-frame-alist '(ns-appearance . light))
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 <stdio.h> | |
#include <math.h> | |
#define LIMIT 100 | |
#define LF 10 | |
#define ASCII_ZERO 48 | |
void printFizz(); | |
void printBuzz(); | |
void printNumber(int number); |
Setting up the free version of Intelephense in NeoVim's native LSP is a straightforward affair. However, importing the license key and using it can be a real headache as there is literally no documentation on how to do this. HOping trhis Gist comes in useful for somebody.
First, create a file called license.txt
in $HOME/intelephense/license.txt
and paste in your license key. Save that file.
Next we will want make sure we have intelephense installed on our host
Magic words:
psql -U postgres
Some interesting flags (to see all, use -h
or --help
depending on your psql version):
-E
: will describe the underlaying queries of the\
commands (cool for learning!)-l
: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)