码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu下vim的安装与配置

时间:2016-05-28 23:08:08      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

由于ubuntu16.04已经可以用vim直接打开文件,所以大可不必使用gvim了,vim显得更加轻巧。

vim的安装:

sudo apt-get install vim

sudo apt-get install vim-gnome

vim的配置:

1.在/home下,Ctrl + H显示隐藏文件, 新建文件.vimrc,便可对vim进行配置。

技术分享
set ai
set aw
set ar
set si
set sc
set sm
set cin
set hls

set go=0
set bs=2
set ls=2
set so=3
set mat=3
set ts=4
set sw=4 sta
set mouse=a
set shm=atI
set list lcs=tab:\ \ 
set cb+=unnamed

autocmd BufEnter * cd %:p:h 

syntax enable
filetype on
filetype plugin on

func! Run_cpp()
 exec "w!"
 exec "!clear && g++ %<.cpp -o %< -g && ./%<"
endfunction

map <F9> :call Run_cpp()<cr>

map <space>h <C-w>h
map <space>j <C-w>j
map <space>k <C-w>k
map <space>l <C-w>l

map <space>[ <C-w>-
map <space>] <C-w>+
map <space>, <C-w><
map <space>. <C-w>>

map <space><space>[ 8<C-w>-
map <space><space>] 8<C-w>+
map <space><space>, 20<C-w><
map <space><space>. 20<C-w>>

map <space>w :wall<cr>
map <space>q :wqall<cr>
我的.vimrc

PS : autocmd BufEnter * cd %:p:h 是将目录转到当前文件的文件夹中,有一个bug是路径中不能带有空格

 

2.vim是基于终端的,所以背景/字体/配色都可以在 终端-编辑-配置文件首选项 中修改。

我配置的效果如下。

技术分享

 

ubuntu下vim的安装与配置

标签:

原文地址:http://www.cnblogs.com/jszyxw/p/5538449.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!