瀏覽代碼

disable search highlight

Josh Bicking 8 年之前
父節點
當前提交
e3e0081f03
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      vimrc

+ 3 - 3
vimrc

@@ -30,6 +30,9 @@ set showcmd
 " don't highlight current line
 set nocursorline
 
+" disable search highlight
+set nohlsearch
+
 " load filetype-specific indent files
 filetype indent on
 
@@ -189,9 +192,6 @@ set laststatus=2
 " neovim
 
 if has('nvim')
-    " Esc clears search highlight
-    nnoremap <silent> <esc> :noh<cr><esc>
-
     " Esc returns to normal mode in terminal mode
     tnoremap <C-w> <C-\><C-n><C-w>
 endif