diff options
| author | Max Bossing <info@maxbossing.de> | 2025-08-12 15:47:14 +0200 | 
|---|---|---|
| committer | Max Bossing <info@maxbossing.de> | 2025-08-12 15:47:14 +0200 | 
| commit | 991c272423d8fa41c9dd21169ce0c3e9979f1c64 (patch) | |
| tree | b4343fb3035989a6bfcafcb02e7db91e91a39785 /nvim/lua/plugins.lua | |
| parent | 7c8d9ae3b0b5e843ffe10fad81e776806c0c5a8b (diff) | |
feat: finally a usable neovim config (switched to LazyVim)
Diffstat (limited to 'nvim/lua/plugins.lua')
| -rw-r--r-- | nvim/lua/plugins.lua | 109 | 
1 files changed, 0 insertions, 109 deletions
| diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua deleted file mode 100644 index 175de4f..0000000 --- a/nvim/lua/plugins.lua +++ /dev/null @@ -1,109 +0,0 @@ -local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" -if not vim.loop.fs_stat(lazypath) then -  vim.fn.system({ -    "git", -    "clone", -    "--filter=blob:none", -    "https://github.com/folke/lazy.nvim.git", -    "--branch=stable", -- latest stable release -    lazypath, -  }) -end -vim.opt.rtp:prepend(lazypath) - -require("lazy").setup({ - -  -- Color Scheme -  "folke/tokyonight.nvim", - -  -- Syntax highlighting -  'nvim-treesitter/nvim-treesitter', - -  -- Status line -  'nvim-lualine/lualine.nvim', - -  -- Git -  'airblade/vim-gitgutter', -   -  -- File System -  'stevearc/oil.nvim', -  'benomahony/oil-git.nvim', -   -  -- non-linear undo history  -  'mbbill/undotree', -   -  -- Git  -  'tpope/vim-fugitive', -   -  -- Comments -  "tpope/vim-commentary", - -  -- Surrounding -  'tpope/vim-surround', - -  -- Better . usage -  'tpope/vim-repeat', -   -  -- Some lsp shit -  'mason-org/mason.nvim', - -  -- Wakatime -  -- 'wakatime/vim-wakatime', - -  { -    'nvim-neo-tree/neo-tree.nvim', -    branch = 'v3.x', -    dependencies = { -      'nvim-lua/plenary.nvim', -      'MunifTanjim/nui.nvim', -      {'3rd/image.nvim', opts = {}}, -    }, -    lazy = false, -  }, -   -  -- Markdown -  { -    'OXY2DEV/markview.nvim', -    lazy = false, -    priority = 49, - -  }, - -  -- Telescope -  { -    'nvim-telescope/telescope.nvim', -    tag = '0.1.5', -    dependencies = { -      'nvim-lua/plenary.nvim', -      'sharkdp/fd', -      { 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' }, -    } -  }, - -  -- Icons   -  { -    "echasnovski/mini.icons", -    lazy = true, -    init = function() -      package.preload["nvim-web-devicons"] = function() -        require("mini.icons").mock_nvim_web_devicons() -        return package.loaded["nvim-web-devicons"] -      end -    end, -  }, - -  -- Rust LSP -  { -    'mrcjkb/rustaceanvim', -    version = '^6', -- Recommended -    lazy = false, -- This plugin is already lazy -  }, - -  -- Completion -  "hrsh7th/nvim-cmp", -  "hrsh7th/cmp-buffer", -  "hrsh7th/cmp-path", -  "hrsh7th/cmp-nvim-lsp", -  "hrsh7th/cmp-nvim-lua", -}) - | 
