vim-startify VS tagbar

Compare vim-startify vs tagbar and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
vim-startify tagbar
37 31
5,237 6,078
- 0.3%
3.9 4.7
3 months ago about 1 month ago
Vim Script Vim Script
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vim-startify

Posts with mentions or reviews of vim-startify. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-05.
  • Suggest me some startup screen plugins
    5 projects | /r/neovim | 5 May 2023
    I'm currently using alpha.nvim (https://github.com/goolord/alpha-nvim). It tries to be more generic than the others, to the point it can recreate most of the other popular ones. It even has template for for example the dashboard layout. startup-nvim (https://github.com/startup-nvim/startup.nvim) seems to do a similar thing, although I dont' have experience with that one. The only other one I've tried before is the classic vim-startify (https://github.com/mhinz/vim-startify), which is a little older I think and locks you into its layout.
  • is there is a session manager plugin ?
    18 projects | /r/neovim | 17 Mar 2023
    Just for posterity since every other session plugin has been posted, vim-startify has autosave and autoload support
  • Do you use vim-startify, or used to? Send me your configs
    4 projects | /r/neovim | 15 Feb 2023
    I am working on a, from scratch, rebuild of the ever classic vim-startify for neovim with a focus on extreme extensibility. I also want it to be as much of a drop in replacement as possible, and don't want to write myself into a corner with some design choices I'm taking
  • Remember open buffers per project?
    2 projects | /r/neovim | 20 Sep 2022
    https://github.com/mhinz/vim-startify has also means to store sessions with command 'SSave'.
  • What is the coolest, unknown(-ish) plugin that you're using that other people could benefit from?
    33 projects | /r/neovim | 16 Sep 2022
    might be well known but i like https://github.com/mhinz/vim-startify easy to use start screen with most recently used lists of files, etc.
  • what vimL plugins are you still using?
    26 projects | /r/neovim | 1 Jul 2022
    Startify
  • What are your must-have vim/nvim extensions?
    53 projects | /r/vim | 9 May 2022
    mhinz/vim-startify - Start page
  • Finally found a good replacement for Startify (mini.starter)
    2 projects | /r/neovim | 1 May 2022
    I was trying to center the startup screen for vim-startify and went down the rabbit hole of looking for a different startup plugin. My main use is that I want to start my already existing startify sessions as everything else I do with Telescope. I found mini.starter and it is working exactly as I want it to so I thought I would share for others that look for something similar. Don't get put off by the many components of the plugin. They are not loaded if you don't need them. Here is my a screenshot and my config for a minimal, centered, startup:
  • One more nvim config with fennel, I am glad I moved (from vimscript)
    12 projects | /r/nvim | 12 Apr 2022
    I do restart vim when it's impossible to evaluate modified stuff in place to see the result immediatelly. Sometimes, when I have lots of buffers opened, need all of them and need to restart, a save a session with Startify :SSave command. On restart I press one key and have everything back.
  • Favourite files plugin
    5 projects | /r/neovim | 22 Jan 2022
    I use Startify, which does a good job with sessions and gives you the ability to create bookmarks and display them on the start screen. My mappings to create a new window or tab always end with invoking Startify, so it is like the new tab screen that web browsers have, showing bookmarks and recent files.

tagbar

Posts with mentions or reviews of tagbar. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-01.
  • Moving across c-family function arguments
    2 projects | /r/vim | 1 Jun 2023
    Are you looking for https://vim-taglist.sourceforge.net/ or https://github.com/preservim/tagbar
  • What is this font used from the everforest repo?
    3 projects | /r/neovim | 30 May 2023
    I ended up finding https://github.com/preservim/tagbar and like it so far
  • NeoVim & Rust
    7 projects | /r/rust | 26 May 2023
    I also recommend you https://github.com/preservim/tagbar with https://ctags.io/ installed , it will map definitions (functions, enum, struct etc..) to tags and tagbar plugin allows you to open a split window with the mapped list and navigate through your file, it also enabled more advanced features for quick navigation .
  • Question regarding vertical movement
    8 projects | /r/neovim | 12 Mar 2023
    Also not that useful for text files I think, but I sometimes use something like https://github.com/preservim/tagbar to get an overview of the structure of the file, especially in unfamiliar documents. This is a quite old plugin of this nature that depends on ctags, there are more modern plugins that depend on treesitter. However for C++, I found the treesitter based bar plugins not as helpful, they need language specific settings, and the ones I tried didn't have them for C++ at the time.
  • Favorite vimrc configs for coding?
    8 projects | /r/vim | 20 Feb 2023
    Having said this, there are some useful language independent extensions: jiangmiao/auto-pairs, tpope/vim-commentary, preservim/tagbar, junegunn/vim-peekaboo
  • NeoVim Installation and Configuration on Win10/11
    14 projects | dev.to | 30 Nov 2022
    :set number :set autoindent :set tabstop=5 :set shiftwidth=4 :set smarttab :set softtabstop=4 :set mouse=a call plug#begin() Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) Plug 'https://github.com/preservim/nerdtree' " NerdTree Plug 'https://github.com/tpope/vim-commentary' " For Commenting gcc & gc Plug 'https://github.com/vim-airline/vim-airline' " Status bar Plug 'https://github.com/lifepillar/pgsql.vim' " PSQL Pluging needs :SQLSetType pgsql.vim Plug 'https://github.com/ap/vim-css-color' " CSS Color Preview Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme Plug 'https://github.com/neoclide/coc.nvim' " Auto Completion Plug 'https://github.com/ryanoasis/vim-devicons' " Developer Icons Plug 'https://github.com/tc50cal/vim-terminal' " Vim Terminal Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors Plug 'https://github.com/rstacruz/vim-closer' " For brackets autocompletion " Auto-completion For Javascript, typescript, html, jsx ...etc Plug 'neoclide/coc.nvim', {'do': 'yarn install --frozen-lockfile'} " this is for auto complete, prettier and tslinting let g:coc_global_extensions = ['coc-tslint-plugin', 'coc-tsserver', 'coc-css', 'coc-html', 'coc-json', 'coc-prettier'] " list of CoC extensions needed Plug 'jiangmiao/auto-pairs' "this will auto close ( [ { " these two plugins will add highlighting and indenting to JSX and TSX files. Plug 'yuezk/vim-js' Plug 'HerringtonDarkholme/yats.vim' Plug 'maxmellon/vim-jsx-pretty' set encoding=UTF-8 call plug#end() nnoremap :NERDTreeFocus nnoremap :NERDTree nnoremap :NERDTreeToggle nnoremap :call CocActionAsync('jumpDefinition') nmap :TagbarToggle :set completeopt-=preview " For No Previews :colorscheme jellybeans let g:NERDTreeDirArrowExpandable="+" let g:NERDTreeDirArrowCollapsible="~" " --- Just Some Notes --- " :PlugClean :PlugInstall :UpdateRemotePlugins " " :CocInstall coc-python " :CocInstall coc-clangd " :CocInstall coc-snippets " :CocCommand snippets.edit... FOR EACH FILE TYPE " air-line let g:airline_powerline_fonts = 1 if !exists('g:airline_symbols') let g:airline_symbols = {} endif " airline symbols let g:airline_left_sep = '' let g:airline_left_alt_sep = '' let g:airline_right_sep = '' let g:airline_right_alt_sep = '' let g:airline_symbols.branch = '' let g:airline_symbols.readonly = '' let g:airline_symbols.linenr = '' inoremap pumvisible() ? coc#_select_confirm() : ""
  • Closing brackets are highlighted in red when in the init.vim file
    9 projects | /r/neovim | 24 Nov 2022
    Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation
  • Is there a plugin similar to Visual Studio's object browser/class view?
    4 projects | /r/neovim | 20 Oct 2022
    https://github.com/preservim/tagbar (no LSP support)
  • Tagbar with telescope?
    3 projects | /r/neovim | 19 Sep 2022
    So I just found this plugin for nvim called tagbar and this has been very productive for me, but it takes many keystrokes to get it and finding in the tagbar window is just simple searching, so no fuzzy finding. Is there another plugin for this or maybe someway to integrate the two?
  • My Neovim Configuration
    11 projects | dev.to | 1 Sep 2022
    call plug#begin('~/.config/nvim/plugged') Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) Plug 'https://github.com/preservim/nerdtree' " NerdTree Plug 'https://github.com/tpope/vim-commentary' " For Commenting gcc & gc Plug 'https://github.com/vim-airline/vim-airline' " Status bar Plug 'https://github.com/ap/vim-css-color' " CSS Color Preview Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme Plug 'https://github.com/ryanoasis/vim-devicons' " Developer Icons Plug 'https://github.com/tc50cal/vim-terminal' " Vim Terminal Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors call plug#end() nnoremap :NERDTreeFocus nnoremap :NERDTree nnoremap :NERDTreeToggle nmap :TagbarToggle let g:NERDTreeDirArrowExpandable="+" let g:NERDTreeDirArrowCollapsible="~"

What are some alternatives?

When comparing vim-startify and tagbar you can also consider the following projects:

symbols-outline.nvim - A tree like view for symbols in Neovim using the Language Server Protocol. Supports all your favourite languages.

navigator.lua - Code analysis & navigation plugin for Neovim. Navigate codes like a breeze🎐 Exploring LSP and 🌲Treesitter symbols a piece of 🍰 Take control like a boss 🦍

vista.vim - :cactus: Viewer & Finder for LSP symbols and tags

alpha-nvim - a lua powered greeter like vim-startify / dashboard-nvim

vim-gutentags - A Vim plugin that manages your tag files

nvim-web-devicons - lua `fork` of vim-web-devicons for neovim

blamer.nvim - A git blame plugin for neovim inspired by VS Code's GitLens plugin

vim-rooter - Changes Vim working directory to project root.

goyo.vim - :tulip: Distraction-free writing in Vim

vim-awesome - Awesome Vim plugins from across the universe

vimwiki - Personal Wiki for Vim

vim-session - Extended session management for Vim (:mksession on steroids)