forked from ayamir/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
98 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
let g:airline_powerline_fonts = 1 | ||
let g:airline#extensions#tabline#enabled = 1 | ||
let g:airline#extensions#tabline#buffer_nr_show = 1 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
" filenames like *.xml, *.html, *.xhtml, ... | ||
" These are the file extensions where this plugin is enabled. | ||
" | ||
let g:closetag_filenames = '*.html,*.xhtml,*.phtml' | ||
|
||
" filenames like *.xml, *.xhtml, ... | ||
" This will make the list of non-closing tags self-closing in the specified files. | ||
" | ||
let g:closetag_xhtml_filenames = '*.xhtml,*.jsx' | ||
|
||
" filetypes like xml, html, xhtml, ... | ||
" These are the file types where this plugin is enabled. | ||
" | ||
let g:closetag_filetypes = 'html,xhtml,phtml' | ||
|
||
" filetypes like xml, xhtml, ... | ||
" This will make the list of non-closing tags self-closing in the specified files. | ||
" | ||
let g:closetag_xhtml_filetypes = 'xhtml,jsx' | ||
|
||
" integer value [0|1] | ||
" This will make the list of non-closing tags case-sensitive (e.g. `<Link>` will be closed while `<link>` won't.) | ||
" | ||
let g:closetag_emptyTags_caseSensitive = 1 | ||
|
||
" dict | ||
" Disables auto-close if not in a "valid" region (based on filetype) | ||
" | ||
let g:closetag_regions = { | ||
\ 'typescript.tsx': 'jsxRegion,tsxRegion', | ||
\ 'javascript.jsx': 'jsxRegion', | ||
\ 'typescriptreact': 'jsxRegion,tsxRegion', | ||
\ 'javascriptreact': 'jsxRegion', | ||
\ } | ||
|
||
" Shortcut for closing tags, default is '>' | ||
" | ||
let g:closetag_shortcut = '>' | ||
|
||
" Add > at current position without closing the current tag, default is '' | ||
" | ||
let g:closetag_close_shortcut = '<leader>>' |
This file contains 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