Last active
October 28, 2015 16:04
-
-
Save michaelcarwile/78897827676a68f62b43 to your computer and use it in GitHub Desktop.
. files
This file contains 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
Container for .files. |
This file contains 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
[default] | |
access_key = ****************************************************** | |
bucket_location = US | |
cloudfront_host = cloudfront.amazonaws.com | |
default_mime_type = binary/octet-stream | |
delete_removed = False | |
dry_run = False | |
enable_multipart = True | |
encoding = UTF-8 | |
encrypt = False | |
follow_symlinks = False | |
force = False | |
get_continue = False | |
gpg_command = /usr/bin/gpg | |
gpg_decrypt = %(gpg_command)s -d --verbose --no-use-agent --batch --yes --passphrase-fd %(passphrase_fd)s -o %(output_file)s %(input_file)s | |
gpg_encrypt = %(gpg_command)s -c --verbose --no-use-agent --batch --yes --passphrase-fd %(passphrase_fd)s -o %(output_file)s %(input_file)s | |
gpg_passphrase = ********************************** | |
guess_mime_type = True | |
host_base = s3.amazonaws.com | |
host_bucket = %(bucket)s.s3.amazonaws.com | |
human_readable_sizes = False | |
invalidate_on_cf = False | |
list_md5 = False | |
log_target_prefix = | |
mime_type = | |
multipart_chunk_size_mb = 15 | |
preserve_attrs = True | |
progress_meter = True | |
proxy_host = | |
proxy_port = 0 | |
recursive = False | |
recv_chunk = 4096 | |
reduced_redundancy = False | |
secret_key = ***************************************** | |
send_chunk = 4096 | |
simpledb_host = sdb.amazonaws.com | |
skip_existing = False | |
socket_timeout = 300 | |
urlencoding_mode = normal | |
use_https = True | |
verbosity = WARNING | |
website_endpoint = http://%(bucket)s.s3-website-%(location)s.amazonaws.com/ | |
website_error = | |
website_index = index.html |
This file contains 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 nocompatible " be iMproved, required | |
filetype off " required | |
" turn syntax highlighting on | |
syntax on | |
" indent settings | |
set shiftwidth=4 | |
set tabstop=4 | |
set softtabstop=4 | |
set smartindent | |
set expandtab | |
set autoindent | |
" allow backspacing over everything in insert mode | |
set backspace=2 | |
set backspace=indent,eol,start | |
" case insensitive search | |
set ignorecase | |
set smartcase | |
" line numbers | |
set number | |
" next search match while typing and highlight | |
set incsearch | |
set hlsearch | |
" Enable mouse use in all modes | |
set mouse=a | |
set ttymouse=xterm2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment