Skip to content

Instantly share code, notes, and snippets.

XDG - Base Directory Specification

Directories

Base

The intended use-case for BaseDirectories is to query the paths of user-invisible standard directories that have been defined according to the conventions of the operating system the library is running on.

@Change-Maker
Change-Maker / customize_neovim.sh
Last active July 7, 2023 03:40
Scripts to customize Vim.
#!/usr/bin/env bash
set -eo pipefail
readonly SELF="$(basename $0)" # The filename of this script.
readonly OS="$(uname -s)"
# Verify OS.
if [ "$OS" = "Linux" ]; then
if [ -f "/etc/os-release" ]; then
""" Lite.vimrc
""" Enable syntax.
syntax on
""" Enable 256 colors.
set t_Co=256
""" Use GUI color settings.
set termguicolors
@Change-Maker
Change-Maker / readme.md
Created June 25, 2021 09:33 — forked from boocs/readme.md
Removing red squiggles (Intellisense errors) for Unreal Engine

Removing red squiggles (Intellisense errors) for Unreal Engine

This guide should remove all Intellisense errors from your project. I've recently finished a Udemy series and had no problems fixing any Intellisense errors with this guide.

I've tested this in both Visual Studio 2019 and VSCode (Latest Microsoft C++ plugin). They both work. (Windows 10)

Some other compilers, with their version of Intellisense, may still be helped by some of this info.

Note: VSCode was used with Build Tools for Visual Studio 2019