vim-github-dashboard

:octocat: Browse GitHub events in Vim (by junegunn)

Vim-github-dashboard Alternatives

Similar projects and alternatives to vim-github-dashboard

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better vim-github-dashboard alternative or higher similarity.

vim-github-dashboard reviews and mentions

Posts with mentions or reviews of vim-github-dashboard. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-26.
  • My Vim Configurations
    3 projects | dev.to | 26 Jul 2022
    call plug#begin() " The default plugin directory will be as follows: " - Vim (Linux/macOS): '~/.vim/plugged' " - Vim (Windows): '~/vimfiles/plugged' " - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged' " You can specify a custom plugin directory by passing it as the argument " - e.g. `call plug#begin('~/.vim/plugged')` " - Avoid using standard Vim directory names like 'plugin' " Make sure you use single quotes " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align Plug 'junegunn/vim-easy-align' " Any valid git URL is allowed Plug 'https://github.com/junegunn/vim-github-dashboard.git' " Multiple Plug commands can be written in a single line using | separators Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' " On-demand loading Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } Plug 'tpope/vim-fireplace', { 'for': 'clojure' } " Using a non-default branch Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } " Using a tagged release; wildcard allowed (requires git 1.9.2 or above) Plug 'fatih/vim-go', { 'tag': '*' } " Plugin options Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } " Plugin outside ~/.vim/plugged with post-update hook Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " vim-airline " display the statusline at the bottom of the vim Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' " ale " check syntax on the contents of text buffers Plug 'dense-analysis/ale' " Initialize plugin system call plug#end() "================ " General settings "================ syntax on set cursorline set backspace=indent,eol,start " Show line numbers " set number " Show command in bottom bar " set showcmd " Visual autocomplete for command menu set wildmenu " Redraw only when necessary, speeds up macros set lazyredraw set hlsearch " system clipboard set clipboard=unnamed " remove all trailing whitepsace " https://vim.fandom.com/wiki/Remove_unwanted_spaces au BufWritePre * :%s/\s\+$//e " The NERD Tree noremap 1 1gt noremap 2 2gt noremap 3 3gt noremap 4 4gt noremap 5 5gt noremap 6 6gt noremap 7 7gt noremap 8 8gt noremap 9 9gt noremap 0 :tablast au BufNewFile,BufRead * set expandtab au BufNewFile,BufRead * set shiftwidth=4 au BufNewFile,BufRead * set softtabstop=4 au BufNewFile,BufRead * set tabstop=4 "=========================== " Language specific settings "=========================== " Python au BufNewFile,BufRead *.py set expandtab au BufNewFile,BufRead *.py set shiftwidth=4 au BufNewFile,BufRead *.py set softtabstop=4 au BufNewFile,BufRead *.py set tabstop=4 " Markdown au BufNewFile,BufRead *.md set expandtab au BufNewFile,BufRead *.md set shiftwidth=4 au BufNewFile,BufRead *.md set softtabstop=4 au BufNewFile,BufRead *.md set tabstop=4
  • how to remove grey bar to right of tabs?
    3 projects | /r/vim | 31 Jan 2022
    set nocursorline set nocompatible " be iMproved, required filetype off " required set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' "letVundle manage Vundle, required Plugin 'terryma/vim-smooth-scroll' "fast scrolling Plugin 'junegunn/seoul256.vim' "Make sure you use single quotes Plugin 'PotatoesMaster/i3-vim-syntax' "i3 syntax highlighting for i3 config Plugin 'junegunn/vim-easy-align' Plugin 'SirVer/ultisnips' | Plugin 'honza/vim-snippets' "vim-snippets depends on ultisnips Plugin 'tpope/vim-fireplace', { 'for': 'clojure' } Plugin 'https://github.com/junegunn/vim-github-dashboard.git' "Using git URL Plugin 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } "Plugin options Plugin 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' } "Plugin outside ~/.vim/plugged with post-update hook Plugin 'itchyny/lightline.vim' "Colored line at bottom of screen Plugin 'terryma/vim-multiple-cursors' Plugin 'file:///home/vip/.vim/bundle/guicolorscheme.vim' Plugin 'https://github.com/altercation/vim-colors-solarized.git' call vundle#end() " required, Must add all Plugins before this line filetype plugin indent on " required if v:progname =~? "evim" finish endif if has("vms") set nobackup " do not keep a backup file, use versions instead else set backup " keep a backup file (restore to previous version) if has('persistent_undo') set undofile " keep an undo file (undo changes after closing) endif endif if &t_Co > 2 || has("gui_running") set hlsearch endif augroup vimrcEx au! autocmd FileType text setlocal textwidth=78 augroup END else set autoindent " always set autoindenting on endif " has("autocmd") if has('syntax') && has('eval') packadd! matchit endif set undodir=$HOME/.vim/undodir set backupdir=$HOME/.vim/backupdir set number set noswapfile let NERDTreeAutoDeleteBuffer = 1 let NERDTreeShowHidden = 1 let NERDTreeQuitOnOpen = 1 let NERDChristmasTree = 1 let NERDTreeAutoCenter = 1 let NERDTreeHighlightCursorline = 1 let NERDTreeMinimalUI = 1 let NERDTreeDirArrows = 1 set laststatus=2 let g:powerline_pycmd="py3" let g:powerline_pycmd="py2" let g:powerline_pycmd="py" let g:python_highlight_all = 1 guibg=#ffffff guifg=#d70000 map "+y map "+p map zz za map x za map ± map ² map ³ map ´ map µ map ¶ map · map ¸ map ¹ map ° map :w map :noh set scrolloff=999 nnoremap 1gt nnoremap 2gt nnoremap 3gt nnoremap 4gt nnoremap 5gt nnoremap 6gt nnoremap 7gt nnoremap 8gt nnoremap 9gt nnoremap 0gt nnoremap :silent! nohls nnoremap i :nohi noremap :call smooth_scroll#up(&scroll, 0, 2) noremap :call smooth_scroll#down(&scroll, 0, 2) noremap :call smooth_scroll#up(&scroll*2, 0, 4) noremap :call smooth_scroll#down(&scroll*2, 0, 4)
  • Neovim ultimate Web Dev Setup with vim plug on windows
    4 projects | dev.to | 13 Dec 2021
    set number set relativenumber set clipboard=unnamed set autoindent set tabstop=4 set shiftwidth=4 set smarttab set softtabstop=4 set mouse=a :filetype indent on :filetype plugin on set ruler call plug#begin('C:/Users/ABIPRAVI/AppData/Local/nvim/plugged') " below are some vim plugins for demonstration purpose. " add the plugin you want to use here. Plug 'Chiel92/vim-autoformat' Plug 'davidhalter/jedi-vim' Plug 'raimon49/requirements.txt.vim', {'for': 'requirements'} Plug 'hail2u/vim-css3-syntax' Plug 'gko/vim-coloresque' Plug 'vim-scripts/pylint.vim' Plug 'tpope/vim-haml' Plug 'mattn/emmet-vim' Plug 'dracula/vim', { 'as': 'dracula' } Plug 'joshdick/onedark.vim' Plug 'iCyMind/NeoSolarized' " Use release branch (recommend) Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim' Plug 'junegunn/vim-easy-align' Plug 'https://github.com/junegunn/vim-github-dashboard.git' Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } Plug 'tpope/vim-fireplace', { 'for': 'clojure' } Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } Plug 'fatih/vim-go', { 'tag': '*' } Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' Plug 'github/copilot.vim' Plug 'https://github.com/rafi/awesome-vim-colorschemes' Plug 'https://github.com/ap/vim-css-color' Plug 'https://github.com/ryanoasis/vim-devicons' Plug 'pangloss/vim-javascript' Plug 'sbdchd/neoformat' Plug 'leafgarland/typescript-vim' Plug 'peitalin/vim-jsx-typescript' Plug 'styled-components/vim-styled-components', { 'branch': 'main' } Plug 'tpope/vim-commentary' Plug 'jparise/vim-graphql' Plug 'kien/ctrlp.vim' Plug 'jiangmiao/auto-pairs' Plug 'ryanoasis/vim-devicons' call plug#end() " Use for trigger snippet expand. imap (coc-snippets-expand) " " " Use for select text for visual placeholder of snippet. vmap (coc-snippets-select) " " " Use for jump to next placeholder, it's default of coc.nvim let g:coc_snippet_next = '' " " " Use for jump to previous placeholder, it's default of coc.nvim let g:coc_snippet_prev = '' " " " Use for both expand and jump (make expand higher priority.) imap (coc-snippets-expand-jump) " " " Use x for convert visual selected code to snippet xmap x (coc-convert-snippet) vmap f (coc-format-selected) nmap f (coc-format-selected) command! -nargs=0 Prettier :CocCommand prettier.formatFile let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#left_sep = ' ' let g:airline#extensions#tabline#left_alt_sep = '|' nnoremap :NERDTreeFocus nnoremap :Prettier nnoremap :PlugInstall nnoremap :NERDTree nnoremap :NERDTreeToggle nnoremap :w :colorscheme dracula
  • Set up coc on neovim.
    4 projects | /r/neovim | 5 Sep 2021
    Plug 'https://github.com/junegunn/vim-github-dashboard.git'
  • Help with Airline git Status
    1 project | /r/vim | 25 Aug 2021
    " Start plug.vim set nocompatible let g:plug_window = 'vertical new' call plug#begin('~/.vim/plugged') Plug 'junegunn/vim-easy-align' Plug 'https://github.com/junegunn/vim-github-dashboard.git' Plug 'preservim/nerdtree' | \ Plug 'Xuyuanp/nerdtree-git-plugin' | \ Plug 'ryanoasis/vim-devicons' Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } Plug 'fatih/vim-go', { 'tag': '*' } Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } Plug 'godlygeek/tabular' | \ Plug 'plasticboy/vim-markdown' Plug 'elzr/vim-json' Plug 'wfxr/minimap.vim' Plug 'thaerkh/vim-indentguides' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' Plug 'tpope/vim-fugitive' Plug 'mbbill/undotree' Plug 'dense-analysis/ale' Plug 'ryanoasis/vim-devicons' Plug 'arcticicestudio/nord-vim' Plug 'darfink/vim-plist' Plug 'sheerun/vim-polyglot' Plug 'neoclide/coc.nvim', {'branch': 'release'} call plug#end()
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 2 May 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic vim-github-dashboard repo stats
5
482
1.8
over 2 years ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com