2021-06-27 12:15:35 +00:00
|
|
|
let g:k_nvim_dotfiles_dir = expand('<sfile>:p:h')
|
|
|
|
let g:k_dotfiles_dir = expand('<sfile>:p:h:h')
|
2021-07-04 20:08:51 +00:00
|
|
|
let &runtimepath = g:k_nvim_dotfiles_dir.','.&runtimepath
|
2021-06-27 12:15:35 +00:00
|
|
|
|
2021-07-04 20:08:51 +00:00
|
|
|
" Disable airline to use barbar
|
|
|
|
let g:loaded_airline = 1
|
|
|
|
|
|
|
|
" This has stopped working...?
|
|
|
|
" let g:dotfiles_plugin_manager_inhibited_plugins = {
|
|
|
|
" \ 'vim-airline': 1,
|
|
|
|
" \ }
|
2021-07-04 16:41:42 +00:00
|
|
|
|
2021-06-24 16:52:31 +00:00
|
|
|
" Enable the clearly superior mode.
|
|
|
|
let g:vim_ide = 1
|
2021-09-05 17:29:57 +00:00
|
|
|
let g:dotfiles_build_coc_from_source = 1
|
2021-06-24 16:52:31 +00:00
|
|
|
|
2021-07-04 17:30:48 +00:00
|
|
|
" Small plugin configs
|
|
|
|
let g:dashboard_default_executive ='fzf'
|
|
|
|
|
2021-06-24 16:52:31 +00:00
|
|
|
" Source Dima's config
|
|
|
|
source <sfile>:p:h/../dmitmel-dotfiles/nvim/init.vim
|
|
|
|
|
2021-07-04 20:08:51 +00:00
|
|
|
let &runtimepath = &runtimepath.','.g:k_nvim_dotfiles_dir.'/after'
|
|
|
|
|
2021-07-04 17:30:48 +00:00
|
|
|
" Styling
|
2021-06-24 16:52:31 +00:00
|
|
|
set termguicolors
|
2021-07-03 10:41:01 +00:00
|
|
|
let airline_powerline_fonts = 1
|