Last active
July 17, 2018 01:57
-
-
Save vim13/965325ee74c3f87c8c9ce752097a56d1 to your computer and use it in GitHub Desktop.
.vimrc
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 nocompatible " be iMproved, required | |
filetype off " required | |
set rtp+=~/.vim/bundle/Vundle.vim/ | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Bundle 'mattn/webapi-vim' | |
Bundle 'mattn/gist-vim' | |
Bundle 'mattn/vim-mastodon' | |
call vundle#end() " required | |
filetype plugin indent on " required | |
set encoding=utf-8 | |
set fileencodings=utf-8 | |
set fileformats=unix,mac | |
let g:mastodon_host = '' | |
let g:mastodon_access_token = '' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment