First draft after switching to lazy.nvim
This commit is contained in:
52
lua/plugins/style.lua
Normal file
52
lua/plugins/style.lua
Normal file
@@ -0,0 +1,52 @@
|
||||
return {
|
||||
{
|
||||
'rebelot/kanagawa.nvim',
|
||||
config = function()
|
||||
vim.opt.guifont = 'Source Code Pro for Powerline'
|
||||
vim.g.limelight_conceal_ctermfg = 'gray'
|
||||
vim.cmd('colorscheme kanagawa')
|
||||
vim.cmd('set termguicolors')
|
||||
vim.opt.syntax = 'on'
|
||||
end
|
||||
},
|
||||
{
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
build = ':TSUpdate',
|
||||
config = function()
|
||||
require('nvim-treesitter.configs').setup {
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
indent = {
|
||||
enable = true,
|
||||
disable = { "html" }
|
||||
}
|
||||
}
|
||||
end,
|
||||
dependencies = { 'nvim-treesitter/playground' }
|
||||
},
|
||||
{
|
||||
'akinsho/bufferline.nvim',
|
||||
tag = "v3.3.0",
|
||||
config = true,
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||
},
|
||||
{
|
||||
'hoob3rt/lualine.nvim',
|
||||
config = function()
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
theme = 'kanagawa'
|
||||
}
|
||||
}
|
||||
end
|
||||
},
|
||||
{ 'lewis6991/gitsigns.nvim' },
|
||||
{
|
||||
'glepnir/dashboard-nvim',
|
||||
event = 'VimEnter',
|
||||
config = true,
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user