Chore: Codestyle changes, split lines that went over limit

This commit is contained in:
2023-04-27 15:27:17 +03:00
parent 0feb7a47ae
commit d6565761ab
2 changed files with 12 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
return { -- Add the community repository of plugin specifications return { -- Add the community repository of plugin specifications
"AstroNvim/astrocommunity", -- example of imporing a plugin, comment out to use it or add your own "AstroNvim/astrocommunity", -- example of imporing a plugin, comment out to use it or add your own
-- available plugins can be found at https://github.com/AstroNvim/astrocommunity -- available plugins can be found at
-- https://github.com/AstroNvim/astrocommunity
{ {
import = "astrocommunity.colorscheme.catppuccin", import = "astrocommunity.colorscheme.catppuccin",
opts = { opts = {

View File

@@ -23,12 +23,15 @@ return {
-- You can disable default plugins as follows: -- You can disable default plugins as follows:
-- { "max397574/better-escape.nvim", enabled = false }, -- { "max397574/better-escape.nvim", enabled = false },
-- --
-- You can also easily customize additional setup of plugins that is outside of the plugin's setup call -- You can also easily customize additional setup of plugins
-- that is outside of the plugin's setup call
{ {
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",
config = function(plugin, opts) config = function(plugin, opts)
require "plugins.configs.luasnip"(plugin, opts) -- include the default astronvim config that calls the setup call -- include the default astronvim config that calls the setup call
-- add more custom luasnip configuration such as filetype extend or custom snippets require "plugins.configs.luasnip" (plugin, opts)
-- add more custom luasnip configuration such
-- as filetype extend or custom snippets
local luasnip = require "luasnip" local luasnip = require "luasnip"
luasnip.filetype_extend("javascript", { "javascriptreact" }) luasnip.filetype_extend("javascript", { "javascriptreact" })
end, end,
@@ -63,12 +66,13 @@ return {
-- ) -- )
-- end, -- end,
-- }, -- },
-- By adding to the which-key config and using our helper function you can add more which-key registered bindings -- By adding to the which-key config and using our helper
-- function you can add more which-key registered bindings
{ {
"folke/which-key.nvim", "folke/which-key.nvim",
config = function(plugin, opts) config = function(plugin, opts)
-- include the default astronvim config that calls the setup call -- include the default astronvim config that calls the setup call
require "plugins.configs.which-key"(plugin, opts) require "plugins.configs.which-key" (plugin, opts)
-- Add bindings which show up as group name -- Add bindings which show up as group name
local wk = require "which-key" local wk = require "which-key"
wk.register({ wk.register({