отступы вместо пробелов

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2023-03-21 22:44:09 +10:00
parent ce27dbe7e8
commit 5a6f16bfbd
3 changed files with 200 additions and 192 deletions

View File

@ -2,185 +2,186 @@
vim.cmd('packadd packer.nvim')
return require('packer').startup(function(use)
-- Менеджер плагинов Packer (автообновление)
use 'wbthomason/packer.nvim'
-- Менеджер плагинов Packer (автообновление)
use 'wbthomason/packer.nvim'
-- Быстрая настройка LSP-серверов
use {
'neovim/nvim-lspconfig',
after = 'coq_nvim',
config = function() require('plugins/lspconfig') end
}
-- Быстрая настройка LSP-серверов
use {
'neovim/nvim-lspconfig',
after = 'coq_nvim',
config = function() require('plugins/lspconfig') end
}
-- Прогресс LSP
use {
'j-hui/fidget.nvim',
config = function() require('plugins/fidget') end
}
-- Прогресс LSP
use {
'j-hui/fidget.nvim',
config = function() require('plugins/fidget') end
}
-- Интерфейс отображающий найденные проблемы LSP-серверами
use {
'folke/trouble.nvim',
requires = 'kyazdani42/nvim-web-devicons',
config = function() require('plugins/trouble') end
}
-- Интерфейс отображающий найденные проблемы LSP-серверами
use {
'folke/trouble.nvim',
requires = 'kyazdani42/nvim-web-devicons',
config = function() require('plugins/trouble') end
}
-- Пиктограммы для плагинов
use {
'onsails/lspkind-nvim',
config = function() require('plugins/lspkind') end
}
-- Пиктограммы для плагинов
use {
'onsails/lspkind-nvim',
config = function() require('plugins/lspkind') end
}
-- Пиктограммы для плагинов
use {
'nvim-tree/nvim-web-devicons',
config = function() require('plugins/nvim-web-devicons') end
}
-- Пиктограммы для плагинов
use {
'nvim-tree/nvim-web-devicons',
config = function() require('plugins/nvim-web-devicons') end
}
-- Интеграция с GIT
use {
'lewis6991/gitsigns.nvim',
config = function() require('plugins/gitsigns') end
}
-- Интеграция с GIT
use {
'lewis6991/gitsigns.nvim',
config = function() require('plugins/gitsigns') end
}
-- Обработчик GIT-команд
use 'tpope/vim-fugitive'
-- Обработчик GIT-команд
use 'tpope/vim-fugitive'
-- Отображение изменений GIT
use 'mhinz/vim-signify'
-- Отображение изменений GIT
use 'mhinz/vim-signify'
-- Отрисовка в реальном времени найденных ошибок LSP-серверами
use {
'onsails/diaglist.nvim',
config = function() require('plugins/diaglist') end
}
-- Отрисовка в реальном времени найденных ошибок LSP-серверами
use {
'onsails/diaglist.nvim',
config = function() require('plugins/diaglist') end
}
-- Интерфейс строки состояния
use {
'nvim-lualine/lualine.nvim',
requires = 'kyazdani42/nvim-web-devicons',
config = function() require('plugins/lualine') end
}
-- Интерфейс строки состояния
use {
'nvim-lualine/lualine.nvim',
requires = 'kyazdani42/nvim-web-devicons',
config = function() require('plugins/lualine') end
}
-- Дополнение для "nvim-lualine/lualine.nvim" с отображением прогресса работы с LSP-серверами
use {
'arkav/lualine-lsp-progress',
config = function() require('plugins/lualine-lsp-progress') end
}
-- Дополнение для "nvim-lualine/lualine.nvim" с отображением прогресса работы с LSP-серверами
use {
'arkav/lualine-lsp-progress',
config = function() require('plugins/lualine-lsp-progress') end
}
-- Интерфейс строки буфера файлов
use {
'akinsho/bufferline.nvim',
tag = "v3.*",
requires = 'nvim-tree/nvim-web-devicons',
config = function() require('plugins/bufferline') end
}
-- Интерфейс строки буфера файлов
use {
'akinsho/bufferline.nvim',
tag = "v3.*",
requires = 'nvim-tree/nvim-web-devicons',
config = function() require('plugins/bufferline') end
}
-- Интерфейс древовидной структуры файлов
use {
'nvim-neo-tree/neo-tree.nvim',
branch = 'v2.x',
requires = {
'nvim-lua/plenary.nvim',
'kyazdani42/nvim-web-devicons',
'MunifTanjim/nui.nvim'
},
config = function() require('plugins/neo-tree') end
}
-- Интерфейс древовидной структуры файлов
use {
'nvim-neo-tree/neo-tree.nvim',
branch = 'v2.x',
requires = {
'nvim-lua/plenary.nvim',
'kyazdani42/nvim-web-devicons',
'MunifTanjim/nui.nvim'
},
config = function() require('plugins/neo-tree') end
}
-- Автодополнение скобок и кавычек
use {
'windwp/nvim-autopairs',
config = function() require('plugins/autopairs') end
}
-- Автодополнение скобок и кавычек
use {
'windwp/nvim-autopairs',
config = function() require('plugins/autopairs') end
}
-- Цвета для отображения найденных ошибок LSP-сервером в случае если другие цвета не найдены
use 'folke/lsp-colors.nvim'
-- Цвета для отображения найденных ошибок LSP-сервером в случае если другие цвета не найдены
use 'folke/lsp-colors.nvim'
-- Клиентская реализация DAP
use {
'mfussenegger/nvim-dap',
config = function() require('plugins/dap') end
}
-- Клиентская реализация DAP
use {
'mfussenegger/nvim-dap',
config = function() require('plugins/dap') end
}
-- Автозавершение
use {
'ms-jpq/coq_nvim',
branch = 'coq',
config = function() require('plugins/coq') end
}
-- Автозавершение
use {
'ms-jpq/coq_nvim',
branch = 'coq',
config = function() require('plugins/coq') end
}
-- Готовые наброски для автозавершения "ms-jpq/coq_nvim"
use {
'ms-jpq/coq.artifacts',
branch = 'artifacts'
}
-- Готовые наброски для автозавершения "ms-jpq/coq_nvim"
use {
'ms-jpq/coq.artifacts',
branch = 'artifacts'
}
-- Пользовательские готовые наброски для автозавершения "ms-jpq/coq_nvim"
use {
'ms-jpq/coq.thirdparty',
branch = '3p'
}
-- Пользовательские готовые наброски для автозавершения "ms-jpq/coq_nvim"
use {
'ms-jpq/coq.thirdparty',
branch = '3p'
}
-- Линтер
use {
'mfussenegger/nvim-lint',
config = function() require('plugins/lint') end
}
-- Линтер
use {
'mfussenegger/nvim-lint',
config = function() require('plugins/lint') end
}
-- Тестирование
use {
'vim-test/vim-test',
config = function() require('plugins/vim-test') end
}
-- Тестирование
use {
'vim-test/vim-test',
config = function() require('plugins/vim-test') end
}
-- Интерфейс для поиска
use {
'nvim-telescope/telescope.nvim',
tag = '0.1.1',
config = function() require('plugins/telescope') end
}
-- Интерфейс для поиска
use {
'nvim-telescope/telescope.nvim',
tag = '0.1.1',
config = function() require('plugins/telescope') end
}
-- Интеграция treesitter
use {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
config = function() require('plugins/treesitter') end
}
-- Интеграция treesitter
use {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
config = function() require('plugins/treesitter') end
}
-- Удобное комментирование
use 'b3nj5m1n/kommentary'
-- Удобное комментирование
use 'b3nj5m1n/kommentary'
-- Древовидное представление символов
use {
'simrat39/symbols-outline.nvim',
config = function() require('plugins/symbols-outline') end
}
-- Древовидное представление символов
use {
'simrat39/symbols-outline.nvim',
config = function() require('plugins/symbols-outline') end
}
-- Интерфейс для отображения тегов в отдельном окне
use 'preservim/tagbar'
-- Интерфейс для отображения тегов в отдельном окне
use 'preservim/tagbar'
-- PHP-теги для "preservim/tagbar" (phpctags для ctags)
use {
'vim-php/phpctags',
run = 'composer install'
}
-- PHP-теги для "preservim/tagbar" (phpctags для ctags)
use {
'vim-php/phpctags',
run = 'composer install'
}
-- Аналог LSP-сервера для поддержки оболочки fish
use 'dag/vim-fish'
-- Аналог LSP-сервера для поддержки оболочки fish
use 'dag/vim-fish'
-- Цветовая тема
use {
'rktjmp/lush.nvim',
config = function() require('plugins/lush') end
};
-- Цветовая тема
use {
'rktjmp/lush.nvim',
config = function() require('plugins/lush') end
};
-- Аналог LSP-сервера для подержки синтаксиса nginx
use 'chr4/nginx.vim'
-- Аналог LSP-сервера для подержки синтаксиса nginx
use 'chr4/nginx.vim'
-- Форматировщик Prettier
use {
'prettier/vim-prettier',
run = 'yarn install --frozen-lockfile --production'
}
-- Форматировщик Prettier
use {
'prettier/vim-prettier',
run = 'yarn install --frozen-lockfile --production',
config = function() require('plugins/vim-prettier') end
}
end)

View File

@ -1,40 +1,41 @@
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
icons = true, -- use devicons for filenames
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
icons = true, -- use devicons for filenames
mode = "workspace_diagnostics", -- "workspace_diagnostics", "document_diagnostics", "quickfix", "lsp_references", "loclist"
fold_open = "", -- icon used for open folds
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
-- map to {} to remove a mapping, for example:
fold_open = "", -- icon used for open folds
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
-- map to {} to remove a mapping, for example:
-- close = {},
close = "q", -- close the list
cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor
refresh = "r", -- manually refresh
jump = {"<cr>", "<tab>"}, -- jump to the diagnostic or open / close folds
open_split = { "<c-x>" }, -- open buffer in new split
open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
open_tab = { "<c-t>" }, -- open buffer in new tab
jump_close = {"o"}, -- jump to the diagnostic and close the list
toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode
toggle_preview = "P", -- toggle auto_preview
hover = "K", -- opens a small popup with the full multiline message
preview = "p", -- preview the diagnostic location
close_folds = {"zM", "zm"}, -- close all folds
open_folds = {"zR", "zr"}, -- open all folds
toggle_fold = {"zA", "za"}, -- toggle fold of current file
previous = "k", -- previous item
next = "j" -- next item
close = "q", -- close the list
cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor
refresh = "r", -- manually refresh
jump = { "<cr>", "<tab>" }, -- jump to the diagnostic or open / close folds
open_split = { "<c-x>" }, -- open buffer in new split
open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
open_tab = { "<c-t>" }, -- open buffer in new tab
jump_close = { "o" }, -- jump to the diagnostic and close the list
toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode
toggle_preview = "P", -- toggle auto_preview
hover = "K", -- opens a small popup with the full multiline message
preview = "p", -- preview the diagnostic location
close_folds = { "zM", "zm" }, -- close all folds
open_folds = { "zR", "zr" }, -- open all folds
toggle_fold = { "zA", "za" }, -- toggle fold of current file
previous = "k", -- previous item
next = "j" -- next item
},
indent_lines = true, -- add an indent guide below the fold icons
auto_open = false, -- automatically open the list when you have diagnostics
auto_close = false, -- automatically close the list when you have no diagnostics
auto_preview = true, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
auto_fold = false, -- automatically fold a file trouble list at creation
auto_jump = {"lsp_definitions"}, -- for the given modes, automatically jump if there is only a single result
indent_lines = true, -- add an indent guide below the fold icons
auto_open = false, -- automatically open the list when you have diagnostics
auto_close = false, -- automatically close the list when you have no diagnostics
auto_preview = true, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
auto_fold = false, -- automatically fold a file trouble list at creation
auto_jump = { "lsp_definitions" }, -- for the given modes, automatically jump if there is only a single result
signs = {
-- icons / text used for a diagnostic
error = "",
@ -44,4 +45,4 @@ require('trouble').setup {
other = ""
},
use_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client
}
})

View File

@ -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