Putty + Vim + Color】的更多相关文章

Putty + Vim + Color 参考: 1.Using colour schemes with vim and putty 2.Putty的颜色 3.Custom PuTTY Color Themes by Ilya Grigorik   Ilya Grigorik is a web performance engineer at Google, co-chair of the W3C Web Performance working group, and author of High P…
我習慣用 putty 連 Unix server 開 screen,再用 vim 寫 Python.這篇記錄如何改善 Python 的顏色. 啟動 256 色 terminal 首先將可用的色彩數增加為 256 色,先確定 putty 為新版 ( 舊版 putty 沒支援 256 色).接著參照<讓 Vim.Screen 支援 256 色>將 Screen 和 Vim 設好,記得先用文末提到的 Colortest 測試是否有符合 256 色,成功的話,數字 0 ~ 15 為原本的 16 色,1…
有关VIM的文件网上一大堆,这里只是记录一下我新配置环境的步骤.以备查看参考. sudo apt-get install gitgit clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle  安装配置vundle 第一步,创建VIM的目录和配置文件: 在-目录下,添加.vimrc文件和.vim/bundle/vundle目录. 第二步,在.vimrc中添加Vundle的配置内容: "use vundle to manage…
上次学了一些C开发相关的工具,这次再配置一下VIM,让开发过程更爽一些. 另外再学一些linux下网络开发的基础,好多人学C也是为了做网络开发. 开发环境 首先得有个Linux环境,有时候家里机器是Windows,装虚拟机也麻烦,所以还不如30块钱 买个腾讯云,用putty远程练上去写代码呢. 我一直都是putty+VIM在Linux下开发代码,好几年了,只要把putty和VIM配置好,其实 开发效率挺高的. 买好腾讯云后,装个Centos,会分配个外网IP,然后买个域名,在DNSPod解析过去…
1 进入自己的vim mkdir ./bundle/vundle 2 在vimrc同级中执行 git clone https://github.com/gmarik/vundle.git ./bundle/vundle   将一些插件文件 下载到./bundle/vundle中 3 编写自己的vim配置,其实很简单 set nocompatible " be iMproved, required filetype off " required " set the runtim…
Vim配置及说明——IDE编程环境 Vim配置及说明——IDE编程环境 1.基本及字体 2.插件管理 3.主题风格 4.窗口设置 5.目录树导航 6.标签导航 7.taglist 8.多文档编辑 9.文件搜索 10.美化状态栏 11.括号匹配高亮 12.可视化缩进 13.标志无效空格 14.快速移动 15.括号匹配跳转 16.自动补全 17.宏定义补全 18.快速加减注释 19.快速加环绕符 20.自动括号补全 21.代码对齐 22.静态代码分析 23.快速跳转到TODO列表 24.维基百科 2…
" Vim color file " " Author: Tomas Restrepo <tomas@winterdom.com> " " Note: Based on the monokai theme for textmate " by Wimer Hazenberg and its darker variant " by Hamish Stuart Macpherson " hi clear set back…
浅色: http://www.vimninjas.com/2012/09/14/10-light-colors/ 深色: http://www.vimninjas.com/2012/08/26/10-vim-color-schemes-you-need-to-own/ 颜色方案配置简介: http://www.mamicode.com/info-detail-470644.html /usr/share/vim/vim74/colors : oceanlight.vim: " Vim color…
大神的vim配置,O(∩_∩)O spf13-vim : Steve Francia's Vim Distribution __ _ _____ _ ___ _ __ / _/ |___ / __ __(_)_ __ ___ / __| '_ \| |_| | |_ \ _____\ \ / /| | '_ ` _ \ \__ \ |_) | _| |___) |_____|\ V / | | | | | | | |___/ .__/|_| |_|____/ \_/ |_|_| |_| |_|…
打造VIM IDE(针对C语言开发者)   ================================使用vim打造IDE, 针对C语言开发者建议使用gvim================================ 先上两个截图 # 安装ctags1. 下载地址: http://ctags.sourceforge.net/ # 安装cscope1. 下载地址: http://cscope.sourceforge.net/ 2. 修改源码,使其支持递归搜索文件夹的软链接   修改文件…