отступы вместо пробелов
This commit is contained in:
parent
ce27dbe7e8
commit
5a6f16bfbd
|
@ -181,6 +181,7 @@ return require('packer').startup(function(use)
|
|||
-- Форматировщик Prettier
|
||||
use {
|
||||
'prettier/vim-prettier',
|
||||
run = 'yarn install --frozen-lockfile --production'
|
||||
run = 'yarn install --frozen-lockfile --production',
|
||||
config = function() require('plugins/vim-prettier') end
|
||||
}
|
||||
end)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require('trouble').setup {
|
||||
require('trouble').setup({
|
||||
position = "bottom", -- position of the list can be: bottom, top, left, right
|
||||
height = 10, -- height of the trouble list when position is top or bottom
|
||||
width = 50, -- width of the list when position is left or right
|
||||
|
@ -8,7 +8,8 @@ require('trouble').setup {
|
|||
fold_closed = "", -- icon used for closed folds
|
||||
group = true, -- group results by file
|
||||
padding = true, -- add an extra new line on top of the list
|
||||
action_keys = { -- key mappings for actions in the trouble list
|
||||
action_keys = {
|
||||
-- key mappings for actions in the trouble list
|
||||
-- map to {} to remove a mapping, for example:
|
||||
-- close = {},
|
||||
close = "q", -- close the list
|
||||
|
@ -44,4 +45,4 @@ require('trouble').setup {
|
|||
other = ""
|
||||
},
|
||||
use_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1,11 +1,17 @@
|
|||
-- Количество пробелов для сдвига
|
||||
-- Количество пробелов для отступа (ширина)
|
||||
vim.opt.shiftwidth = 2
|
||||
|
||||
-- Количество пробелов при переносе строки (<CR>)
|
||||
vim.opt.tabstop = 2
|
||||
-- Количество учитываемых пробелов при операциях редактирования (например: вставка <tab> - отступа)
|
||||
vim.opt.softtabstop = 2
|
||||
|
||||
-- Подстраивать новые строки под предыдущий отступ
|
||||
-- Количество пробелов которые будет конвертированы в отступы
|
||||
vim.opt.tabstop = 4
|
||||
|
||||
-- Пробелы вместо отступов
|
||||
vim.opt.expandtab = false
|
||||
|
||||
-- Копировать отступ из текущей строки при создании новой
|
||||
vim.opt.autoindent = true
|
||||
|
||||
-- Умный отступ при создании новой строки
|
||||
vim.opt.smartindent = true
|
||||
|
||||
-- Отступы вместо пробелов
|
||||
vim.opt.expandtab = true
|
||||
|
|
Loading…
Reference in New Issue