from packer to lazy
This commit is contained in:
40
lua/settings/lazy.lua
Normal file
40
lua/settings/lazy.lua
Normal file
@@ -0,0 +1,40 @@
|
||||
-- Bootstrap lazy.nvim
|
||||
local path = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
|
||||
|
||||
if not (vim.uv or vim.loop).fs_stat(path) then
|
||||
local repository = 'https://github.com/folke/lazy.nvim.git'
|
||||
local out = vim.fn.system({ 'git', 'clone', '--filter=blob:none', '--branch=stable', repository, path })
|
||||
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ 'Failed to clone lazy.nvim:\n', 'ErrorMsg' },
|
||||
{ out, 'WarningMsg' },
|
||||
{ '\nPress any key to exit...' },
|
||||
}, true, {})
|
||||
|
||||
vim.fn.getchar()
|
||||
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
|
||||
vim.opt.rtp:prepend(path)
|
||||
|
||||
-- Setup lazy.nvim
|
||||
require('lazy').setup({
|
||||
-- Import plugins
|
||||
spec = {
|
||||
{ import = 'plugins' },
|
||||
},
|
||||
|
||||
-- Configure any other settings here. See the documentation for more details.
|
||||
-- colorscheme that will be used when installing plugins.
|
||||
install = {
|
||||
colorscheme = { 'flexoki' }
|
||||
},
|
||||
|
||||
-- Automatically check for plugin updates
|
||||
checker = {
|
||||
enabled = true
|
||||
},
|
||||
})
|
||||
@@ -1,3 +1,7 @@
|
||||
-- Leader button
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = "\\"
|
||||
|
||||
-- Использовать системный буфер обмена
|
||||
vim.opt.clipboard = 'unnamedplus'
|
||||
|
||||
@@ -28,9 +32,7 @@ vim.opt_local.cursorcolumn = true
|
||||
-- Theme
|
||||
vim.opt.background = "dark"
|
||||
|
||||
-- Colorscheme
|
||||
-- vim.cmd.colorscheme('default')
|
||||
-- vim.cmd.colorscheme('koehler')
|
||||
-- Colorscheme @see plugin "flexoki"
|
||||
vim.cmd.colorscheme('vim')
|
||||
|
||||
-- Добавление ru_RU (переключать через <c-^>)
|
||||
@@ -48,3 +50,7 @@ vim.opt_local.spelllang = 'ru_yo,en_us'
|
||||
vim.g.markdown_fenced_languages = {
|
||||
"ts=typescript"
|
||||
}
|
||||
|
||||
-- Syntax hightlighting
|
||||
vim.cmd('syntax on')
|
||||
vim.cmd('filetype plugin on')
|
||||
|
||||
Reference in New Issue
Block a user