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
| format = """ | |
| $directory\ | |
| $git_branch\ | |
| $git_status\ | |
| $python\ | |
| $cmd_duration\ | |
| $line_break\ | |
| $character""" | |
| scan_timeout = 2000 |
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
| CFLAGS += -O3 -Wall -pipe -pedantic -std=gnu99 | |
| CXXFLAGS += -O3 -Wall -pipe -Wno-unused -pedantic | |
| CC = zig cc | |
| CXX = zig c++ | |
| CXXSTD = zig c++ | |
| CXX98 = zig c++ | |
| CXX11 = zig c++ | |
| CXX14 = zig c++ | |
| CXX17 = zig c++ |
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
| set backspace=2 " backspace in insert mode works like normal editor | |
| set shiftwidth=2 " indent by 2 spaces when auto-indenting | |
| set softtabstop=2 " indent by 2 spaces when hitting tab | |
| syntax on " syntax highlighting | |
| filetype indent on " activates indenting for files | |
| set autoindent " auto indenting | |
| set number " line numbers | |
| colorscheme desert " colorscheme desert (or retrobox for newer versions of neovim) | |
| set background=dark " dark background for theme | |
| set nobackup " get rid of anoying ~file |
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
| # split panes using | and -, make sure they open in the same path | |
| bind | split-window -h -c "#{pane_current_path}" | |
| bind - split-window -v -c "#{pane_current_path}" | |
| unbind '"' | |
| unbind % | |
| # open new windows in the current path | |
| bind c new-window -c "#{pane_current_path}" |
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
| .tab .close { /* move close button to right and always show */ | |
| display: inline !important; | |
| order:1 !important; | |
| } | |
| .tab .tab-audio{ /* move audio button to left */ | |
| order:-1 !important; | |
| } | |
| .tab .favicon{ /* always show favicon, on Mac it disappears when you mouseover */ |
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
| [colors] | |
| draw_bold_text_with_bright_colors = false | |
| [colors.cursor] | |
| cursor = "#528bff" | |
| text = "CellBackground" | |
| [colors.normal] | |
| black = "#1c1f24" | |
| blue = "#3d5e8f" # Darkened from #51afef |
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
| #!/bin/bash | |
| # lifted from https://kevquirk.com/git-commit-and-push-script/ | |
| # alias push='~/git-push.sh' | |
| read -p "Commit message: " desc | |
| git add . && \ | |
| git add -u && \ | |
| git commit -m "$desc" && \ | |
| git push |
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
| # Distributed with a free-will license. | |
| # Use it any way you want, profit or free, provided it fits in the licenses of its associated works. | |
| # BMP280 | |
| # This code is designed to work with the BMP280_I2CS I2C Mini Module available from ControlEverything.com. | |
| # https://www.controleverything.com/content/Barometer?sku=BMP280_I2CSs#tabs-0-product_tabset-2 | |
| import smbus | |
| import time | |
| # Get I2C bus | |
| bus = smbus.SMBus(1) | |
| # BMP280 address, 0x76(118) |
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
| <?xml version='1.0'?> | |
| <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit mode="assign" name="rgba"> | |
| <const>rgb</const> | |
| </edit> | |
| </match> | |
| <match target="font"> | |
| <edit mode="assign" name="hinting"> |
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
| *.font: xft:FuraCode\ Nerd\ Font:style=Medium:size=11 | |
| *.internalBorder: 10 | |
| *.scrollBar: False | |
| !! Copy Paste & Other Extensions | |
| URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select | |
| URxvt.copyCommand: xclip -i -selection clipboard | |
| URxvt.pasteCommand: xclip -o -selection clipboard | |
| URxvt.keysym.M-c: perl:clipboard:copy | |
| URxvt.keysym.M-v: perl:clipboard:paste |
NewerOlder