mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-18 07:34:45 +00:00
Migración de Github
This commit is contained in:
commit
5f80ad5e47
113 changed files with 6084 additions and 0 deletions
28
vimrc
Normal file
28
vimrc
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
" Vim configuration file
|
||||
|
||||
syntax on
|
||||
set guifont=Monospace\ Bold\ 12
|
||||
colors gruvbox
|
||||
set background=dark
|
||||
|
||||
" Uncomment the following to have Vim jump to the last position when
|
||||
" reopening a file
|
||||
if has("autocmd")
|
||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe
|
||||
"normal! g'\"" | endif
|
||||
endif
|
||||
|
||||
" Uncomment the following to have Vim load indentation rules and plugins
|
||||
" according to the detected filetype.
|
||||
if has("autocmd")
|
||||
filetype plugin indent on
|
||||
endif
|
||||
|
||||
set showmatch
|
||||
"set mouse=a
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set smartindent
|
||||
set autoindent
|
||||
set cindent
|
||||
"set mouse=a
|
||||
Loading…
Add table
Add a link
Reference in a new issue