Skip to content

Instantly share code, notes, and snippets.

View pomozoff's full-sized avatar

Anton Pomozov pomozoff

  • Akademon Ltd.
  • Moscow, Russia
View GitHub Profile
@pomozoff
pomozoff / Monokai Revisited.xccolortheme
Created April 20, 2020 11:09
Xcode color theme - Monokai Revisited
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DVTConsoleDebuggerInputTextColor</key>
<string>0.995968 0.995968 0.995968 1</string>
<key>DVTConsoleDebuggerInputTextFont</key>
<string>SFMono-Bold - 11.0</string>
<key>DVTConsoleDebuggerOutputTextColor</key>
<string>0.999873 1 0.999841 1</string>
# Configure locale
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DVTConsoleDebuggerInputTextColor</key>
<string>1 1 1 1</string>
<key>DVTConsoleDebuggerInputTextFont</key>
<string>SFMono-Medium - 12.0</string>
<key>DVTConsoleDebuggerOutputTextColor</key>
<string>1 1 1 1</string>
# Tig default configuration
#
# Please see 'man tigrc' for a complete reference.
# Settings
# --------
# Most of these settings can be toggleable, either via the toggle-*
# actions or via the option menu (bound to `o` by default).
# View settings
@pomozoff
pomozoff / .vimrc
Last active July 11, 2019 07:41
My vimrc
" Plugin Manager 'vim-plug'
"
" List of the plugins
call plug#begin()
" Dracula colour scheme
Plug 'dracula/vim'
" Code completer and error checker
"Plug 'Valloric/YouCompleteMe'