diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index 8e4d461..3d1f3a7 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -2,8 +2,6 @@ let s:ctx = g:dotfiles_plugins_list_context " Files {{{ call s:ctx.use('preservim/nerdtree') - call s:ctx.use('kyazdani42/nvim-web-devicons') - call s:ctx.use('romgrk/barbar.nvim') " }}} " Language specific {{{ @@ -11,8 +9,6 @@ let s:ctx = g:dotfiles_plugins_list_context " }}} " Misc {{{ -call s:ctx.use('glacambre/firenvim', { 'do': ':call firenvim#install(0)' }) - call s:ctx.use('glepnir/dashboard-nvim') if has('nvim-0.5.0') call s:ctx.use('andweeb/presence.nvim') endif diff --git a/nvim/init.vim b/nvim/init.vim index 191e687..c97a056 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -1,22 +1,14 @@ let g:k_nvim_dotfiles_dir = expand(':p:h') let g:k_dotfiles_dir = expand(':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, -\ } +let &runtimepath = g:k_nvim_dotfiles_dir.','.&runtimepath.','.g:k_nvim_dotfiles_dir.'/after' " Enable the clearly superior mode. let g:vim_ide = 1 -" Small plugin configs -let g:dashboard_default_executive ='fzf' - " Source Dima's config source :p:h/../dmitmel-dotfiles/nvim/init.vim -" Styling +" Give me that beautiful colorscheme set termguicolors let airline_powerline_fonts = 1 diff --git a/nvim/plugin/barbar.vim b/nvim/plugin/barbar.vim deleted file mode 100644 index e3e632b..0000000 --- a/nvim/plugin/barbar.vim +++ /dev/null @@ -1,9 +0,0 @@ -let bufferline = get(g:, 'bufferline', {}) -let bufferline.icons = 'both' - -" Navigating buffers -nnoremap :BufferPrevious -nnoremap :BufferNext -nnoremap :BufferPick - -nnoremap :BufferClose