Mercurial > dotfiles
comparison dot_config/nvim/config.lua @ 352:678cb3fdb667
Update to latest version of indent-blankline
Removes the need for indentline, no conceal
Exclude terminal from showing lines
author | Zeger Van de Vannet <zegervdv@me.com> |
---|---|
date | Tue, 23 Feb 2021 09:05:31 +0100 |
parents | a9910306741c |
children | d6c684c651bf |
comparison
equal
deleted
inserted
replaced
351:7838713fd3b4 | 352:678cb3fdb667 |
---|---|
70 | 70 |
71 -- Searching | 71 -- Searching |
72 use {'mhinz/vim-grepper', cmd = {'Grepper'}} | 72 use {'mhinz/vim-grepper', cmd = {'Grepper'}} |
73 | 73 |
74 -- Indent lines | 74 -- Indent lines |
75 use {'Yggdroot/indentline'} | 75 use { |
76 use {'lukas-reineke/indent-blankline.nvim', branch = 'lua'} | 76 'lukas-reineke/indent-blankline.nvim', |
77 branch = 'lua', | |
78 config = function () | |
79 vim.g.indent_blankline_buftype_exclude = {'terminal'} | |
80 end | |
81 } | |
77 | 82 |
78 -- Tmux | 83 -- Tmux |
79 function test_tmux() | 84 function test_tmux() |
80 return os.getenv('TMUX') ~= nil | 85 return os.getenv('TMUX') ~= nil |
81 end | 86 end |