diff options
author | Raymaekers Luca <luca@spacehb.net> | 2025-04-05 15:36:12 +0200 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-04-05 15:36:12 +0200 |
commit | 2c433c348662ee6e4ee5c99a8f5e400858013fa2 (patch) | |
tree | 09ebbb33f9a65be421890d4964f567676cf21967 /lua/config/lazy.lua | |
parent | 19423cd7c17edae426c39e01683424089bc8c8c9 (diff) |
checkpoint
Diffstat (limited to 'lua/config/lazy.lua')
-rw-r--r-- | lua/config/lazy.lua | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 4ced567..3fd9dc9 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -6,13 +6,12 @@ if not vim.loop.fs_stat(lazypath) then "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", - "--branch=stable", -- latest stable release + "--branch=stable", lazypath, }) end vim.opt.rtp:prepend(lazypath) --- plugins installation and configuration require("lazy").setup({ "echasnovski/mini.nvim", "tpope/vim-vinegar", @@ -42,20 +41,16 @@ require("lazy").setup({ config = function() require("nord").setup({ transparent = false, - terminal_colors = true, -- `:terminal` + terminal_colors = true, diff = { mode = "bg" }, borders = true, - -- values : [bg|fg|none] errors = { mode = "bg" }, - -- values : [vim|vscode] search = { theme = "vim" }, styles = { - -- `:help nvim_set_hl` comments = { italic = true }, keywords = { bold = true }, functions = { bold = true }, variables = { bold = true }, - -- To customize lualine/bufferline bufferline = { current = {}, modified = { italic = true }, @@ -66,7 +61,6 @@ require("lazy").setup({ end, }, { - -- Fuzzy Finder (files, lsp, etc) "nvim-telescope/telescope.nvim", dependencies = { "nvim-lua/plenary.nvim", @@ -83,8 +77,6 @@ require("lazy").setup({ build = ":TSUpdate", }, }, { - - -- lazy options performance = { rtp = { disabled_plugins = { @@ -96,13 +88,4 @@ require("lazy").setup({ }, }, }, - -- install = { - -- colorscheme = { "nord" }, - -- missing = false, - -- }, - -- change_detection = { - -- enabled = true, - -- notify = true, - -- }, - -- checker = { enabled = true, notify = false }, }) |