All Projects → laktek → Distraction Free Writing Vim

laktek / Distraction Free Writing Vim

Collection of configurations I use to for my distraction free editing environment in Vim

Labels

Projects that are alternatives of or similar to Distraction Free Writing Vim

Rocannon
Vim for Ansible playbooks: omni-completion, abbreviations, syntax, folding, K-docs, and colorscheme
Stars: ✭ 80 (-6.98%)
Mutual labels:  viml
Use vim as ide
use vim as IDE
Stars: ✭ 9,067 (+10443.02%)
Mutual labels:  viml
Vim Task
vim task plugin
Stars: ✭ 84 (-2.33%)
Mutual labels:  viml
Xoria256.vim
Finely tuned soft gamma, 256 colors, dark background, gvim == vim
Stars: ✭ 80 (-6.98%)
Mutual labels:  viml
Incsearch Easymotion.vim
Stars: ✭ 82 (-4.65%)
Mutual labels:  viml
Learn Vim
无废话极简版Vim学习笔记!文章按主题分拆为多个章节,并尽量控制每节的信息量;通过文字色彩和字体,将命令、快捷键突出显示;在每节结尾,提供一个命令列表,以便回顾文中介绍的重要命令。如果这些文章能对喜欢Vim的朋友有所益处,我将不胜荣幸。
Stars: ✭ 83 (-3.49%)
Mutual labels:  viml
Vim Plugin Viewdoc
Vim plugin: flexible viewer for any documentation
Stars: ✭ 79 (-8.14%)
Mutual labels:  viml
Nodejs Vagrant
Stars: ✭ 86 (+0%)
Mutual labels:  viml
Vim Symfony
A vim plugin to handle symfony and all that stuff
Stars: ✭ 82 (-4.65%)
Mutual labels:  viml
Jasmine.vim
Jasmine Plugin for Vim
Stars: ✭ 84 (-2.33%)
Mutual labels:  viml
Vimtodo
Vim TODO manager
Stars: ✭ 80 (-6.98%)
Mutual labels:  viml
Closetag.vim
Functions and mappings to close open HTML/XML tags
Stars: ✭ 81 (-5.81%)
Mutual labels:  viml
Languagetool
Grammar checker for English, French, German (etc.) in Vim
Stars: ✭ 83 (-3.49%)
Mutual labels:  viml
Vim Statline
Add useful informations to Vim statusline
Stars: ✭ 80 (-6.98%)
Mutual labels:  viml
Vim Jira Complete
AutoComplete JIRA issues in Vim
Stars: ✭ 85 (-1.16%)
Mutual labels:  viml
Vim Pomodoro
Vim plugin for the Pomodoro time management technique
Stars: ✭ 79 (-8.14%)
Mutual labels:  viml
Vimrc
Meteor/Web development centric vim config
Stars: ✭ 83 (-3.49%)
Mutual labels:  viml
Vim Oblique
DEPRECATED Improved /-search (experimental)
Stars: ✭ 86 (+0%)
Mutual labels:  viml
Vim
Stars: ✭ 85 (-1.16%)
Mutual labels:  viml
Jekyll.vim
Automate common Jekyll tasks from Vim
Stars: ✭ 83 (-3.49%)
Mutual labels:  viml

Distraction Free Writing for Vim

  • Copy plugin/DistractionFree.vim to ~/.vim/plugin

  • Copy syntax/mkd.vim to ~/.vim/syntax

  • Copy ftdetect/mkd.vim to ~/.vim/ftdetect

  • Copy colors/iawriter.vim to ~/.vim/colors

  • In .vimrc, specify the colorschemes and fonts to use in fullscreen mode and normal mode.

      g:fullscreen_colorscheme - colorscheme to use in fullscreen mode 
      g:fullscreen_font font to use in fullscreen mode 
      g:normal_colorscheme - colorscheme to use in normal mode 
      g:normal_font - font to use in normal mode
    

example (macvim):

	let g:fullscreen_colorscheme = "iawriter"
	let g:fullscreen_font = "Cousine:h14"
	let g:normal_colorscheme = "codeschool"
	let g:normal_font="Inconsolata:h14"

or, for gvim:

  let g:fullscreen_colorscheme = "iawriter"
  let g:fullscreen_font ="Cousine 12"
  let g:normal_colorscheme= g:colors_name
  let g:normal_font=&guifont

Under linux, you must manually activate fullscreen mode (ie ALT+F11)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].