Can't figure out how to setup the indent-blankline plugin?

This page summarizes the projects mentioned and recommended in the original post on /r/neovim

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • indent-blankline.nvim

    Indent guides for Neovim

  • I'm trying to figure out how to setup https://github.com/lukas-reineke/indent-blankline.nvim. Decided to ask about it here instead of opening up an issue because it's probably something I don't understand about neovim (currently trying to setup my neovim environment for the first time, using vim-plugged).

  • ncm2-jedi

  • " Run current file aliasis command! -bar PhTest w | !php % command! -bar PyTest w | !python3 % " Adjusted Key Bindings nmap :Vexplore map (easymotion-prefix) nmap :let file = expand('%:p') \:tabnew \:set nonumber \:execute 'term pudb3 ' file " various variable adjustments let b:ale_linters = ['pylint'] autocmd FileType php setlocal omnifunc=phpactor#Complete let g:phpactorCompletionIgnoreCase = 0 set number let g:ale_python_pylint_executable = 'pylint' let g:ale_python_pylint_options = '--indent-string=" "' let g:indentLine_enabled = v:true let g:indent_blankline_char = '│' set shiftwidth=2 set softtabstop=2 set expandtab set autoindent " set autowrite filetype plugin indent on let g:vdebug_options = {} let g:vdebug_options["port"] = 9000 let g:python_recommended_style = 0 call plug#begin('~/.config/nvim/plugged') let g:UltiSnipsExpandTrigger="" let g:UltiSnipsJumpForwardTrigger="" let g:UltiSnipsJumpBackwardTrigger="" " PHP7 let g:ultisnips_php_scalar_types = 1 " Python let g:python3_host_prog = "/usr/bin/python3" " Misc Plug 'roxma/nvim-yarp' Plug 'roxma/vim-hug-neovim-rpc' Plug 'jiangmiao/auto-pairs' Plug 'machakann/vim-sandwich' Plug 'preservim/nerdcommenter' " Code Completion Plug 'ncm2/ncm2' Plug 'ncm2/ncm2-ultisnips' Plug 'phpactor/phpactor' , {'do': 'composer install', 'for': 'php'} Plug 'phpactor/ncm2-phpactor', {'for': 'php'} Plug 'https://github.com/ncm2/ncm2-jedi.git', { 'for': 'python' } " Debugging Plug 'vim-vdebug/vdebug' " Code Snippets Plug 'SirVer/ultisnips' | Plug 'phux/vim-snippets' " Syntax Highlighting Plug 'StanAngeloff/php.vim', {'for': 'php'} Plug 'numirias/semshi', {'do': ':UpdateRemotePlugins', 'for': 'python'} " File Explorer Plug 'scrooloose/nerdTree' Plug 'tpope/vim-vinegar' " Surround code in brackets,parentheses, etc. Plug 'tpope/vim-surround' " Fuzzy finder for files and neovim buffers Plug 'ctrlpvim/ctrlp.vim' " Easy text navigation Plug 'easymotion/vim-easymotion' " Line for showing info ath the bottom Plug 'bling/vim-airline' " Implements various unix utilities as vim commands Plug 'tpope/vim-eunuch' " Git intergration Plug 'airblade/vim-gitgutter' " Linting Plug 'W0rp/ale' " Indent line Plug 'lukas-reineke/indent-blankline.nvim' call plug#end() augroup ncm2 au! autocmd BufEnter * call ncm2#enable_for_buffer() au User Ncm2PopupOpen set completeopt=noinsert,menuone,noselect au User Ncm2PopupClose set completeopt=menuone augroup END " parameter expansion for selected entry via Enter inoremap (pumvisible() ? ncm2_ultisnips#expand_or("\", 'n') : "\") " cycle through completion entries with tab/shift+tab inoremap pumvisible() ? "\" : "\" inoremap pumvisible() ? "\" : "\" filetype plugin on filetype indent on

  • InfluxDB

    Power Real-Time Data Analytics at Scale. 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.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts