dotfiles/nvim/init.vim
2021-07-04 18:41:42 +02:00

20 lines
622 B
VimL

let g:k_nvim_dotfiles_dir = expand('<sfile>:p:h')
let g:k_dotfiles_dir = expand('<sfile>:p:h:h')
let &runtimepath = g:k_nvim_dotfiles_dir.','.&runtimepath.','.g:k_nvim_dotfiles_dir.'/after'
" Disable the following plugins from Dima's list
" https://github.com/dmitmel/dotfiles/commit/ae79a2b708c79cf91a889737e69b7256681d0478
let g:dotfiles_plugin_manager_inhibited_plugins = {
\ 'vim-airline': 1,
\ }
" Enable the clearly superior mode.
let g:vim_ide = 1
" Source Dima's config
source <sfile>:p:h/../dmitmel-dotfiles/nvim/init.vim
" Give me that beautiful colorscheme
set termguicolors
let airline_powerline_fonts = 1