aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2023-03-31 16:06:59 +0300
committerValentin Popov <valentin@popov.link>2023-03-31 16:06:59 +0300
commit385a4269d008f60036c027b9f4e074b1be28ec2a (patch)
tree46c614675923aad64bed04369f481f0ff160e9f3
parent26d2dd2f7f1e829324bbb7ea0d0ba2e77421a6ee (diff)
downloadnvim-config-385a4269d008f60036c027b9f4e074b1be28ec2a.tar.xz
nvim-config-385a4269d008f60036c027b9f4e074b1be28ec2a.zip
Подсветка отступов и переносов
Signed-off-by: Valentin Popov <valentin@popov.link>
-rw-r--r--lua/plugins.lua11
-rw-r--r--lua/settings.lua5
2 files changed, 16 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'
diff --git a/lua/settings.lua b/lua/settings.lua
index 59e3a05..5ef22e0 100644
--- a/lua/settings.lua
+++ b/lua/settings.lua
@@ -13,6 +13,11 @@ opt.cursorline = true -- Подсветка текущей строки
opt.number = true -- Отображать номер текущей строки
opt.relativenumber = true -- Использовать относительные номера строк
+-- Подсветка отступов и переносов
+opt.list = true
+opt.listchars:append "space:⋅"
+opt.listchars:append "eol:↴"
+
-- Отключение неподдерживаемых провайдеров
vim.g.loaded_node_provider = 0
vim.g.loaded_perl_provider = 0