48 lines
1.2 KiB
VimL
48 lines
1.2 KiB
VimL
lua << EOF
|
|
require('core.plugins')
|
|
require('core.config')
|
|
require('core.mappings')
|
|
EOF
|
|
|
|
|
|
"let mapleader = "\\"
|
|
nmap <space> <leader>
|
|
|
|
"let autoload_plug_path = stdpath('config') . '/autoload/plug.vim'
|
|
"
|
|
"if !filereadable(autoload_plug_path)
|
|
" silent exe '!curl -fL --create-dirs -o ' . autoload_plug_path .
|
|
" \ ' https://raw.github.com/junegunn/vim-plug/master/plug.vim'
|
|
" execute 'source ' . fnameescape(autoload_plug_path)
|
|
" let plug_install = 1
|
|
"endif
|
|
"unlet autoload_plug_path
|
|
|
|
"colorscheme enfocado
|
|
"lua require('lualine').setup { options = { theme = 'enfocado' } }
|
|
|
|
colorscheme falcon
|
|
lua require('lualine').setup { options = { theme = 'falcon' } }
|
|
|
|
"highlight MatchParen cterm=underline ctermbg=black ctermfg=NONE
|
|
"highlight VirtColumn ctermfg=DarkGrey ctermbg=NONE
|
|
"hi clear SpellBad
|
|
"hi SpellBad cterm=underline
|
|
|
|
" Ctags {{{
|
|
if isdirectory($HOME . '/.cache/nvim/tags') == 0
|
|
:silent !mkdir -p ~/.cache/nvim/tags > /dev/null 2>&1
|
|
endif
|
|
let g:gutentags_cache_dir='~/.cache/nvim/tags'
|
|
"let g:gutentags_ctags_extra_args=['--fields=+l']
|
|
|
|
if isdirectory($HOME . '/.cache/nvim/undo') == 0
|
|
:silent !mkdir -p ~/.cache/nvim/undo > /dev/null 2>&1
|
|
endif
|
|
set undodir=~/.cache/nvim/undo/
|
|
set undofile
|
|
|
|
lua << EOF
|
|
require('core.temp')
|
|
EOF
|