diff options
author | Valentin Popov <valentin@popov.link> | 2023-03-31 16:06:59 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2023-03-31 16:06:59 +0300 |
commit | 385a4269d008f60036c027b9f4e074b1be28ec2a (patch) | |
tree | 46c614675923aad64bed04369f481f0ff160e9f3 /lua/plugins.lua | |
parent | 26d2dd2f7f1e829324bbb7ea0d0ba2e77421a6ee (diff) | |
download | nvim-config-385a4269d008f60036c027b9f4e074b1be28ec2a.tar.xz nvim-config-385a4269d008f60036c027b9f4e074b1be28ec2a.zip |
Подсветка отступов и переносов
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 9932dc7..12eb6bc 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -82,6 +82,17 @@ return require('packer').startup(function(use) end, } + -- Подсветка отступов + use { + 'lukas-reineke/indent-blankline.nvim', + config = function() + require('indent_blankline').setup { + show_end_of_line = true, + space_char_blankline = " ", + } + end, + } + -- Линтер для файлов use 'dense-analysis/ale' |