1
0
Fork 0
mirror of synced 2024-06-01 15:01:10 -04:00

Added line numbers. Disabled GUI menu. Made Windows GUI font smaller (11)

This commit is contained in:
Mark Ulrich 2018-08-30 01:43:04 -05:00
parent 6bd9eda8c3
commit c3e74cc3d8
3 changed files with 11 additions and 1 deletions

View file

@ -58,6 +58,9 @@ command W w !sudo tee % > /dev/null
" Set 7 lines to the cursor - when moving vertically using j/k " Set 7 lines to the cursor - when moving vertically using j/k
set so=7 set so=7
" Show line numbers
set number
" Avoid garbled characters in Chinese language windows OS " Avoid garbled characters in Chinese language windows OS
let $LANG='en' let $LANG='en'
set langmenu=en set langmenu=en

View file

@ -12,7 +12,7 @@
if has("mac") || has("macunix") if has("mac") || has("macunix")
set gfn=IBM\ Plex\ Mono:h14,Hack:h14,Source\ Code\ Pro:h15,Menlo:h15 set gfn=IBM\ Plex\ Mono:h14,Hack:h14,Source\ Code\ Pro:h15,Menlo:h15
elseif has("win16") || has("win32") elseif has("win16") || has("win32")
set gfn=IBM\ Plex\ Mono:h14,Source\ Code\ Pro:h12,Bitstream\ Vera\ Sans\ Mono:h11 set gfn=IBM\ Plex\ Mono:h11,Source\ Code\ Pro:h12,Bitstream\ Vera\ Sans\ Mono:h11
elseif has("gui_gtk2") elseif has("gui_gtk2")
set gfn=IBM\ Plex\ Mono:h14,:Hack\ 14,Source\ Code\ Pro\ 12,Bitstream\ Vera\ Sans\ Mono\ 11 set gfn=IBM\ Plex\ Mono:h14,:Hack\ 14,Source\ Code\ Pro\ 12,Bitstream\ Vera\ Sans\ Mono\ 11
elseif has("linux") elseif has("linux")
@ -26,6 +26,7 @@ set guioptions-=r
set guioptions-=R set guioptions-=R
set guioptions-=l set guioptions-=l
set guioptions-=L set guioptions-=L
set guioptions-=m
" Colorscheme " Colorscheme
set background=dark set background=dark

View file

@ -75,3 +75,9 @@ endif
" => Twig section " => Twig section
"""""""""""""""""""""""""""""" """"""""""""""""""""""""""""""
autocmd BufRead *.twig set syntax=html filetype=html autocmd BufRead *.twig set syntax=html filetype=html
""""""""""""""""""""""""""""""
" => GL Shading Language
""""""""""""""""""""""""""""""
autocmd! BufNewFile,BufRead *.vs,*.fs set ft=glsl