24 lines
763 B
VimL
24 lines
763 B
VimL
source $HOME/.config/nvim/plugins.vim
|
|
source $HOME/.config/nvim/general.vim
|
|
source $HOME/.config/nvim/remaps.vim
|
|
source $HOME/.config/nvim/theme.vim
|
|
source $HOME/.config/nvim/file-tree.vim
|
|
source $HOME/.config/nvim/coc.vim
|
|
source $HOME/.config/nvim/tabs.vim
|
|
source $HOME/.config/nvim/git.vim
|
|
|
|
" Filetypes for markdown extension
|
|
let g:mkdp_filetypes = ['md', 'mdx', 'markdown']
|
|
|
|
let g:svelte_preprocessors = ['typescript', 'scss']
|
|
|
|
let g:closetag_filenames = '*.html,*.svelte,*.jsx,*.tsx'
|
|
let g:closetag_regions = {
|
|
\ 'typescript.tsx': 'jsxRegion,tsxRegion',
|
|
\ 'javascript.jsx': 'jsxRegion',
|
|
\ 'typescriptreact': 'jsxRegion,tsxRegion',
|
|
\ 'javascriptreact': 'jsxRegion',
|
|
\ }
|
|
|
|
let g:ctrlp_custom_ignore = '\v[\/](\.git|node_modules|dist|build)$'
|