rice

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 6a3c93643a51547bcf435e342b8ce0b07175120a
parent e31bf742b3a0967e0637938d195bf3675ba15807
Author: Mark Feller <mfeller@recurly.com>
Date:   Sun, 26 Apr 2020 13:21:05 -0600

more cleanup and syncing

Signed-off-by: Mark Feller <mfeller@recurly.com>

Diffstat:
Ddots/.local/bin/notify_date | 9---------
Ddots/.local/bin/popup_music | 3---
Adots/.vim/colors/gruvbox.vim | 44++++++++++++++++++++++++++++++++++++++++++++
Adots/.vim/vimrc | 3+++
4 files changed, 47 insertions(+), 12 deletions(-)

diff --git a/dots/.local/bin/notify_date b/dots/.local/bin/notify_date @@ -1,9 +0,0 @@ -#!/bin/sh -# -# Display the date using notify-send -# A nice alternative to displaying the time on a bar. - -# Arbitrary but unique message id -msgId="661049" - -notify-send -t 5000 "$(date +"%A, %-d %b %-I:%M")" diff --git a/dots/.local/bin/popup_music b/dots/.local/bin/popup_music @@ -1,3 +0,0 @@ -#!/bin/sh - -POPUP_GEOMETRY=80x24 popup ncmpcpp diff --git a/dots/.vim/colors/gruvbox.vim b/dots/.vim/colors/gruvbox.vim @@ -0,0 +1,44 @@ +" Vim color file +" Maintainer: Bram Moolenaar <Bram@vim.org> +" Last Change: 2001 Jul 23 + +" This is the default color scheme. It doesn't define the Normal +" highlighting, it uses whatever the colors used to be. + +" Set 'background' back to the default. The value can't always be estimated +" and is then guessed. +hi clear Normal +set bg& + +" Remove all existing highlighting and set the defaults. +hi clear + +" Load the syntax highlighting defaults, if it's enabled. +if exists("syntax_on") + syntax reset +endif + +let colors_name = "gruvbox" + +hi Comment ctermfg=8 +hi Constant ctermfg=6 +hi String ctermfg=6 +hi Special ctermfg=none +hi Identifier ctermfg=none +hi Statement ctermfg=none cterm=bold +hi PreProc ctermfg=none +hi type ctermfg=none cterm=bold +hi Underlined ctermfg=none +hi Ignore ctermfg=none +hi Keyword ctermfg=none cterm=bold +hi Label ctermfg=none +hi Repeat ctermfg=none +hi Error ctermbg=1 + +" Golang +hi goDirective ctermfg=none cterm=bold +hi goDeclType ctermfg=none + +hi LineNR ctermfg=8 + +" vim: sw=2 diff --git a/dots/.vim/vimrc b/dots/.vim/vimrc @@ -0,0 +1,3 @@ +colorscheme gruvbox +set number +set relativenumber