This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
| #!/usr/bin/env python | |
| import sys | |
| types = ["KB","MB","GB","TB","PB","EB","ZB","YB"] | |
| def convert(s): | |
| div = 1024 | |
| i = 0 | |
| while i < len(types): | |
| s /= div |
| import gi | |
| gi.require_version('Gtk', '3.0') | |
| from gi.repository import Gtk | |
| input = Gtk.TextView() | |
| value = item.get_buffer().get_text( | |
| item.get_buffer().get_start_iter(), | |
| item.get_buffer().get_end_iter(), | |
| True |
| widget = Gtk.Entry() | |
| widget.unset_state_flags(Gtk.StateFlags.FOCUSED) |
| #include <stdio.h> | |
| void pass_it(void (*f)(char), char c, int t) { | |
| for(int i = 0; i<t; i++) | |
| (*f)(c); | |
| } | |
| void echo(char c) { | |
| printf("%c", c); | |
| } |
This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
| (require 'package) | |
| (add-to-list 'package-archives | |
| '("melpa" . "http://melpa.org/packages/")) | |
| (package-initialize) | |
| (require 'neotree) | |
| (global-set-key [f8] 'neotree-toggle) | |
| (require 'fill-column-indicator) | |
| (add-hook 'after-change-major-mode-hook 'fci-mode) |
| from gi.repository import Gtk | |
| settings = Gtk.Settings.get_default() | |
| settings.set_property("gtk-application-prefer-dark-theme", True) |
| dd if=/dev/cdrom of=cd2.iso |
| use strict; | |
| use warnings; | |
| use vars qw($VERSION %IRSSI); | |
| use Irssi; | |
| # Script info | |
| $VERSION = '0.1'; | |
| %IRSSI = ( | |
| authors => 'Bas Stottelaar', |
| bind -n S-Right next-window | |
| bind -n S-Left previous-window | |
| #bind -n C-Up select-pane -U | |
| #bind -n C-Down select-pane -D | |
| #bind -n C-Left select-pane -L | |
| #bind -n C-Right select-pane -R | |
| # Config plugins | |
| set -g status-right '#(cd #{pane_current_path}; git rev-parse --abbrev-ref HEAD) %m-%d %H:%M' | |
| #set -g status off |