diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-02-26 18:00:03 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-02-26 18:00:03 +0300 |
commit | 00a7bf1bd132abe1491b96e8f0c37ae1b8ec7138 (patch) | |
tree | 3824d99a5a2ce5063498e4a675b5511bc5011689 /.config/nvim/lua/user/plugins.lua | |
parent | e72256be161a60a0671b2ed2868f4d3e99559645 (diff) |
added transparency and opacity rules
Diffstat (limited to '.config/nvim/lua/user/plugins.lua')
-rw-r--r-- | .config/nvim/lua/user/plugins.lua | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/.config/nvim/lua/user/plugins.lua b/.config/nvim/lua/user/plugins.lua index 94b1035..7b7e31d 100644 --- a/.config/nvim/lua/user/plugins.lua +++ b/.config/nvim/lua/user/plugins.lua @@ -34,9 +34,10 @@ plugins = { "neovim/nvim-lspconfig", -- LSP configuration event = { "InsertEnter" }, }, - { - "simrat39/rust-tools.nvim", + { + "FabijanZulj/blame.nvim", -- git blame integration }, + { "simrat39/rust-tools.nvim" }, -- no commments -- { "hrsh7th/vim-vsnip" }, -- snippet engine @@ -49,16 +50,16 @@ plugins = { event = { "InsertEnter" }, }, { - "rafamadriz/friendly-snippets", -- predefined snippets + "rafamadriz/friendly-snippets", -- predefined snippets event = { "InsertEnter" }, }, { - "CRAG666/code_runner.nvim", + "CRAG666/code_runner.nvim", -- TODO: setup magic filenames to be executed per-project config = true, }, { - "akinsho/toggleterm.nvim", + "akinsho/toggleterm.nvim", -- a terminal, horaaaay config = true, }, @@ -134,4 +135,8 @@ lazy.setup(plugins, opts) -- miscellanous plugin setup require('bufferline').setup{} - +require('blame').setup{ + width = 16, + date_format = "%H:%M:%S %Y-%m-%d", + merge_consecutive = true, +} |