- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filetype plugin indent on | |
syntax on "activates syntax highlighting among other things | |
set autoindent "indent base on previous and syntax | |
set backspace=indent,eol,start "Fixes the backspace | |
set foldmethod=indent "fold your code. | |
set hidden "work with multiple unsaved buffers. | |
set incsearch "highlights as you search | |
set ignorecase | |
set smartcase | |
set relativenumber number "sets line numbers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function themename_customize_register($wp_customize){ | |
$wp_customize->add_section('themename_color_scheme', array( | |
'title' => __('Color Scheme', 'themename'), | |
'priority' => 120, | |
)); | |
// ============================= |