- Save as
🌈.lua
cd $(dirname path/to/🌈.lua)
nvim 🌈.lua
:luafile %
- Press
F5
to 🌈
The F5
bit is just for demonstration. In an actual statusline, you'll want to uncomment line 65 so it actually checks for LSP messages.
-- Place this file in `.local/share/nvim/lazy/zenbones.nvim/colors/ | |
-- Load it with `colorscheme poimbones` | |
local colors_name = "poimbones" | |
vim.g.colors_name = colors_name -- Required when defining a colorscheme | |
local lush = require "lush" | |
local hsluv = lush.hsluv -- Human-friendly hsl | |
local util = require "zenbones.util" |
🌈.lua
cd $(dirname path/to/🌈.lua)
nvim 🌈.lua
:luafile %
F5
to 🌈The F5
bit is just for demonstration. In an actual statusline, you'll want to uncomment line 65 so it actually checks for LSP messages.
Keybindings to use with the vscode-neovim extension.
{ | |
"background" : "#282828", | |
"black" : "#282828", | |
"blue" : "#458588", | |
"brightBlack" : "#928374", | |
"brightBlue" : "#83A598", | |
"brightCyan" : "#8EC07C", | |
"brightGreen" : "#B8BB26", | |
"brightPurple" : "#D3869B", | |
"brightRed" : "#FB4934", |
--- dsdt.orig 2019-06-10 16:09:40.945676250 +0200 | |
+++ dsdt.dsl 2019-06-10 16:28:15.274723137 +0200 | |
@@ -3905,11 +3905,13 @@ | |
If (LEqual (PM6H, One)) | |
{ | |
CreateBitField (BUF0, \_SB.PCI0._Y0C._RW, ECRW) // _RW_: Read-Write Status | |
- Store (Zero, ECRW (If (PM0H) | |
- { | |
- CreateDWordField (BUF0, \_SB.PCI0._Y0D._LEN, F0LN) // _LEN: Length | |
- Store (Zero, F0LN) /* \_SB_.PCI0._CRS.F0LN */ |
This guide is out of date! Following this guide will leave you with a non-functioning system. You can still use this guide for inspiration, but please still do use the Official installation guide
Hi there, this is a guide to install Arch Linux on your computer. I decided to write a guide because I find most other guides to be either too minimalistic or they have you set up some parts of the system in strange ways.
This guide is reference material for myself, as well as for other people who would like to install Arch for the first time.
#!/bin/bash | |
tmup () | |
{ | |
echo -n "Updating to latest tmux environment..."; | |
export IFS=","; | |
for line in $(tmux showenv -t $(tmux display -p "#S") | tr "\n" ","); | |
do | |
if [[ $line == -* ]]; then | |
unset $(echo $line | cut -c2-); |
##git mergetool
In the middle file (future merged file), you can navigate between conflicts with ]c
and [c
.
Choose which version you want to keep with :diffget //2
or :diffget //3
(the //2
and //3
are unique identifiers for the target/master copy and the merge/branch copy file names).
:diffupdate (to remove leftover spacing issues)
:only (once you’re done reviewing all conflicts, this shows only the middle/merged file)