Maintainer: Brian Wilson [email protected]
GIT: ssh://[email protected]:wiltech/fulgur.git
======
Fulgur Workstation is a light-weight highly configurable workstation platform for software and networking development.
# This function calls the script below when loaded by | |
# the shell inside of neovim. It must be placed somewhere in | |
# your default shell's rc file e.g. ~/.zshrc | |
neovim_autocd() { | |
[[ $NVIM_LISTEN_ADDRESS ]] && neovim-autocd.py | |
} | |
chpwd_functions+=( neovim_autocd ) |
################################# | |
# | |
# Backend | |
# | |
################################# | |
# Backend to use: "xrender" or "glx". | |
# GLX backend is typically much faster but depends on a sane driver. | |
backend = "xrender"; |
# | |
# Run-time configuration file for bash dialog | |
# Path: /etc/dialogrc | |
# | |
# Types of values: | |
# | |
# Number - <number> | |
# String - "string" | |
# Boolean - <ON|OFF> | |
# Attribute - (foreground,background,highlight?) |
diff --git a/colors/OceanicNext.vim b/colors/OceanicNext.vim | |
index 1c496b2..cda25f9 100644 | |
--- a/colors/OceanicNext.vim | |
+++ b/colors/OceanicNext.vim | |
@@ -53,10 +53,10 @@ function! <sid>hi(group, fg, bg, attr, attrsp) | |
exec "hi " . a:group . " guifg=" . a:fg[0] | |
exec "hi " . a:group . " ctermfg=" . a:fg[1] | |
endif | |
- if !empty(a:bg) | |
- exec "hi " . a:group . " guibg=" . a:bg[0] |
======
Fulgur Workstation is a light-weight highly configurable workstation platform for software and networking development.
#!/bin/bash | |
# dLocker.sh by Brian Wilson | |
# | |
# Quick and dirty prototype for a directory locker | |
# | |
# Initialization Example: | |
# $ cd dLocker | |
# $ ls | |
# dLocker/ dLocker.sh |
#!/bin/zsh | |
# Simple function to get weather from command line via curl | |
# To use either add to zshrc/bashrc, or run the command `source weather.zsh` | |
export LOC="kalamazoo" | |
# If no location is provided, weather for $LOC will be returned | |
function wthr() { | |
if [ -z "$1" ]; then | |
echo "$(curl -silent wttr.in/$LOC)" |