Compare commits

..

No commits in common. "f5586af58ca7ff2fb6eaf95fc93fc1c743ca0b3b" and "4ac23c83913882bf46d162d2767d2fd361b03fb9" have entirely different histories.

2 changed files with 24 additions and 21 deletions

View file

@ -1,19 +0,0 @@
-- Disable airline to use barbar
vim.g.loaded_airline = 1
-- TODO: Refactor to Lua
-- This has stopped working...?
-- let g:dotfiles_plugin_manager_inhibited_plugins = {
-- \ 'vim-airline': 1,
-- \ }
-- Enable the clearly superior mode.
vim.g.vim_ide = 1
vim.g.dotfiles_build_coc_from_source = 1
-- Small plugin configs
vim.g.dashboard_default_executive ='fzf'
-- Styling
vim.g.termguicolors = 1
vim.g.airline_powerline_fonts = 1

View file

@ -1,5 +1,27 @@
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'
let &runtimepath = g:k_nvim_dotfiles_dir.','.&runtimepath
" Disable airline to use barbar
let g:loaded_airline = 1
" This has stopped working...?
" let g:dotfiles_plugin_manager_inhibited_plugins = {
" \ 'vim-airline': 1,
" \ }
" Enable the clearly superior mode.
let g:vim_ide = 1
let g:dotfiles_build_coc_from_source = 1
" Small plugin configs
let g:dashboard_default_executive ='fzf'
" Source Dima's config
source <sfile>:p:h/../dmitmel-dotfiles/nvim/init.vim
luafile <sfile>:p:h/init.lua
let &runtimepath = &runtimepath.','.g:k_nvim_dotfiles_dir.'/after'
" Styling
set termguicolors
let airline_powerline_fonts = 1