-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgvimrc
27 lines (20 loc) · 835 Bytes
/
gvimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
" Example Vim graphical configuration.
" Copy to ~/.gvimrc or ~/_gvimrc.
set guifont=Dank\ Mono:h18 " Font family and font size.
set antialias " MacVim: smooth fonts.
set encoding=utf-8 " Use UTF-8 everywhere.
set guioptions-=T " Hide toolbar.
set background=light " Background.
set lines=80 columns=165 " Window dimensions.
syntax enable
set background=dark
set guioptions-=r " Don't show right scrollbar
set directory=~/.vimswap
:aunmenu File.Print
:aunmenu Tools.Make
let g:ctrlp_prompt_mappings = {
\ 'AcceptSelection("e")': ['<c-t>'],
\ 'AcceptSelection("t")': ['<cr>', '<2-LeftMouse>'],
\ }
:anoremenu icon=NSTouchBarSidebarTemplate TouchBar.ShowSidebar :Lexplore<CR>
highlight htmlArg cterm=italic gui=italic