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

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

View File

@ -1,40 +1,41 @@
require('trouble').setup { require('trouble').setup({
position = "bottom", -- position of the list can be: bottom, top, left, right 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 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 width = 50, -- width of the list when position is left or right
icons = true, -- use devicons for filenames icons = true, -- use devicons for filenames
mode = "workspace_diagnostics", -- "workspace_diagnostics", "document_diagnostics", "quickfix", "lsp_references", "loclist" mode = "workspace_diagnostics", -- "workspace_diagnostics", "document_diagnostics", "quickfix", "lsp_references", "loclist"
fold_open = "", -- icon used for open folds fold_open = "", -- icon used for open folds
fold_closed = "", -- icon used for closed folds fold_closed = "", -- icon used for closed folds
group = true, -- group results by file group = true, -- group results by file
padding = true, -- add an extra new line on top of the list padding = true, -- add an extra new line on top of the list
action_keys = { -- key mappings for actions in the trouble list action_keys = {
-- map to {} to remove a mapping, for example: -- key mappings for actions in the trouble list
-- map to {} to remove a mapping, for example:
-- close = {}, -- close = {},
close = "q", -- close the list close = "q", -- close the list
cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor
refresh = "r", -- manually refresh refresh = "r", -- manually refresh
jump = {"<cr>", "<tab>"}, -- jump to the diagnostic or open / close folds jump = { "<cr>", "<tab>" }, -- jump to the diagnostic or open / close folds
open_split = { "<c-x>" }, -- open buffer in new split open_split = { "<c-x>" }, -- open buffer in new split
open_vsplit = { "<c-v>" }, -- open buffer in new vsplit open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
open_tab = { "<c-t>" }, -- open buffer in new tab open_tab = { "<c-t>" }, -- open buffer in new tab
jump_close = {"o"}, -- jump to the diagnostic and close the list jump_close = { "o" }, -- jump to the diagnostic and close the list
toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode
toggle_preview = "P", -- toggle auto_preview toggle_preview = "P", -- toggle auto_preview
hover = "K", -- opens a small popup with the full multiline message hover = "K", -- opens a small popup with the full multiline message
preview = "p", -- preview the diagnostic location preview = "p", -- preview the diagnostic location
close_folds = {"zM", "zm"}, -- close all folds close_folds = { "zM", "zm" }, -- close all folds
open_folds = {"zR", "zr"}, -- open all folds open_folds = { "zR", "zr" }, -- open all folds
toggle_fold = {"zA", "za"}, -- toggle fold of current file toggle_fold = { "zA", "za" }, -- toggle fold of current file
previous = "k", -- previous item previous = "k", -- previous item
next = "j" -- next item next = "j" -- next item
}, },
indent_lines = true, -- add an indent guide below the fold icons indent_lines = true, -- add an indent guide below the fold icons
auto_open = false, -- automatically open the list when you have diagnostics auto_open = false, -- automatically open the list when you have diagnostics
auto_close = false, -- automatically close the list when you have no 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_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_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 auto_jump = { "lsp_definitions" }, -- for the given modes, automatically jump if there is only a single result
signs = { signs = {
-- icons / text used for a diagnostic -- icons / text used for a diagnostic
error = "", error = "",
@ -44,4 +45,4 @@ require('trouble').setup {
other = "" other = ""
}, },
use_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client 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 vim.opt.shiftwidth = 2
-- Количество пробелов при переносе строки (<CR>) -- Количество учитываемых пробелов при операциях редактирования (например: вставка <tab> - отступа)
vim.opt.tabstop = 2 vim.opt.softtabstop = 2
-- Подстраивать новые строки под предыдущий отступ -- Количество пробелов которые будет конвертированы в отступы
vim.opt.smartindent = true vim.opt.tabstop = 4
-- Отступы вместо пробелов -- Пробелы вместо отступов
vim.opt.expandtab = true vim.opt.expandtab = false
-- Копировать отступ из текущей строки при создании новой
vim.opt.autoindent = true
-- Умный отступ при создании новой строки
vim.opt.smartindent = true