ubuntu下使用Vim学习C++

前端之家收集整理的这篇文章主要介绍了ubuntu下使用Vim学习C++前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装

开发环境:

  系统:ubuntu 16.04LTS。

  工具:Vim7.4

  编译,链接,运行:g++

  现在贴上Vim的安装命令:
  

sudo apt-get install vim-gtk
//or 
sudo apt-get install vim

简易配置

sudo vim /etc/vim/vimrc

imput this in the last columns

这里写代码

set nu                           // 在左侧行号
set tabstop                  //tab 长度设置为 4
set nobackup               //覆盖文件时不备份
"set smartindent 
set cursorline               //突出显示当前行
set ruler                       //在右下角显示光标位置的状态行
set autoindent             //自动缩进

编译C++

vim demo.cpp
:wq
g++ ./demo.cpp
./a.out
原文链接:https://www.f2er.com/ubuntu/355672.html

猜你在找的Ubuntu相关文章