This commit is contained in:
2025-08-28 23:17:34 +02:00
parent fe3886fbdf
commit 20a49c3f58
31 changed files with 440 additions and 117 deletions

View File

@@ -10,49 +10,24 @@
--
-- NOTE: Here is where you install your plugins.
require('lazy').setup({
-- spec = {
-- -- add LazyVim and import its plugins
-- { 'LazyVim/LazyVim' },
-- },
spec = {
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
-- 'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
-- NOTE: Plugins can be added with a require command
-- require 'kickstart.plugins.mini',
require 'kickstart.plugins.mini',
require 'kickstart.plugins.snacks', -- for use with neo-tree
require 'kickstart.plugins.noice',
require 'kickstart.plugins.treesitter',
require 'kickstart.plugins.telescope',
require 'kickstart.plugins.neo-tree',
require 'kickstart.plugins.lsp',
require 'kickstart.plugins.autopairs',
require 'kickstart.plugins.autoformat',
require 'kickstart.plugins.autocompletion',
require 'kickstart.plugins.gitsigns',
require 'kickstart.plugins.todo-comments',
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line', -- use alternative mini module
-- require 'kickstart.plugins.lint',
require 'kickstart.plugins.header',
require 'kickstart.plugins.which-key',
require 'kickstart.plugins.quarto',
require 'kickstart.plugins.obsidian',
require 'kickstart.plugins.markdown',
require 'kickstart.plugins.latex',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/kickstart/plugins/*.lua`
-- This is the easiest way to modularize your config.
{ import = 'kickstart.plugins' },
-- Colorschemes
require 'kickstart.plugins.colorschemes',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.
--
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- { import = 'custom.plugins' },
--
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope!
-- In normal mode type `<space>sh` then write `lazy.nvim-plugin`
-- you can continue same window with `<space>sr` which resumes last telescope search
-- In order to disable a plugin, add a spec with enabled=false
--
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope!
-- In normal mode type `<space>sh` then write `lazy.nvim-plugin`
-- you can continue same window with `<space>sr` which resumes last telescope search
},
}, {
ui = {
-- If you are using a Nerd Font: set icons to an empty table which will use the

View File

@@ -90,5 +90,12 @@ vim.opt.softtabstop = 2 -- nombre d'espaces quand tu tapes <Tab>
-- indentation auto intelligente
vim.opt.smartindent = true
-- The order of your `lazy.nvim` imports is incorrect:
-- • `lazyvim.plugins` should be first
-- • followed by any `lazyvim.plugins.extras`
-- • and finally your own `plugins`
-- If you think you know what you're doing, you can disable this check with:
vim.g.lazyvim_check_order = false
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et