進行配置的時候在終端輸入命令列vim .vimrc
,在裡面寫vim的配置檔案
set nu "顯示行號
set ai "ai是autoindent的簡寫,啟動自動縮排
"set cin "cin是cindnet的簡寫,使用c語言格式的自動縮排
set hls "hls是hlsearsh的簡寫,啟動搜尋高亮
set ts=4 "ts是tabstop的簡寫
set sw=4 "sw是shiftwidth的簡寫,寫set cin後用
set mouse=a "可以使用滑鼠
color ron "color是colorscheme的簡寫
"ino ' ''i
"ino " ""i
"ino ( ()i
"ino [ i
"ino i
"ino o
"括號補全,ino是inoremap的簡寫
map! jk :w"進入普通模式並儲存
"map! jl "map! jo "個人喜好,將比較遠的鍵對映一下
"map! "map! "map! "map! "對映方向鍵(表示ctrl+h),這個可能用不習慣,可以不用
"map! :w:!g++ % -o %< -std=c++11 && time ./%< < in"map! :w:!g++ % -o %< -g && gdb %<"map! :w:!python3 %"map! :w:!cat %map :w:!g++ % -o %< -d shawk -std=c++11 -o2 && time ./%"按f6執行python**
"按f7進行除錯
"按f9可以將檔案打出來,方便複製到系統剪下板
autocmd bufnewfile *.cpp exec ":call settitle()"
func settitle()
if &filetype == 'cpp'
call setline(1,"#include ")
endif
endfunc
set et
et是expandtab的簡寫,製表符將由空格代替
set noswapfile
:不產生.swap檔案
tabstop
:製表符的長度
shiftwidth
:自動縮排的長度
colorscheme ron
: 主題選用ron(我個人比較喜歡這個)
:nmap 在普通模式(normal)下對映
:vmap 在視覺化模式(visual)下對映
:omap 在運算子模式(operator pending)下對映
:imap 在插入模式(insert only)下對映
:cmap 在命令列模式(command line)下對映
:map 相當與1,2,3和起來
:map! 相當與4,5和起來
:inoremap 是在插入模式下不遞迴的對映
首先要在首選項裡開啟外部工具的外掛程式
#!/bin/sh
fullname=$gedit_current_document_name
name=$
gnome-terminal -x bash -c "rm $name; make $name; time ./$name < in; read"
#!/bin/sh
fullname=$gedit_current_document_name
name=$
gnome-terminal -x bash -c "g++ $fullname -o $name -g; gdb $name; read"
drbd配置檔案 drbd配置檔案
drbd配置檔案 vim usr local drbd etc drbd.d global common.conf global usage count yes 是否參加drbd使用者統計 common protocol c 使用drbd的第三種同步協議 disk 使用dpod功能保證在數 on i...
Spring配置檔案載入外部配置檔案
有時,應用程式可能需要從不同的位置 例如 檔案系統 classpath或者url 讀取外部資源 例如 文字檔案 xml檔案 屬性檔案或或者影象檔案 通常,為了從不同位置載入資源,需要和不同的api打交道。spring的資源載入器提供了乙個統一的getresource 方法,使用這個方法可以通過資源路...
mysql簡單配置檔案 MySQL配置檔案
mysql配置檔案 在windows下是my.ini,而在linux下是my.cnf。基本引數 port 3306 埠號 server id 1 basedir c program files mysql mysql server 5.5 基準路徑,其他路徑都相對於這個路徑 datadir c pr...