From 044b0fde49fb09a7850e24927897bf21cf8b5cca Mon Sep 17 00:00:00 2001 From: godot Date: Wed, 17 Apr 2024 23:27:50 +0200 Subject: [PATCH] everforest ricing --- README.md | 5 +++++ init.lua | 6 ++++-- lazy-lock.json | 8 ++++---- lua/plugins.lua | 4 +++- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4637e9c..5f8df6b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,16 @@ ## Used plugins - https://github.com/folke/lazy.nvim (plugin manager) +- https://github.com/neanias/everforest-nvim (colour scheme) - https://github.com/catppuccin/nvim?tab=readme-ov-file (colour scheme) - https://github.com/nvim-lualine/lualine.nvim (status bar) - https://github.com/nvim-telescope/telescope.nvim (fuzzy finder) - https://github.com/nvim-treesitter/nvim-treesitter (tree sitter plugin old) - https://github.com/nvim-neo-tree/neo-tree.nvim (map of filesystem) + +#### Old plugins +- https://github.com/catppuccin/nvim?tab=readme-ov-file (colour scheme) + ### Tutorials used - [YT - typecraft serie](https://www.youtube.com/watch?v=zHTeCSVAFNY&list=PLsz00TDipIffreIaUNk64KxTIkQaGguqn) diff --git a/init.lua b/init.lua index 648e30f..fb46fef 100644 --- a/init.lua +++ b/init.lua @@ -35,9 +35,11 @@ config.setup({ indent = { enable = true }, }) +require("everforest").setup({}) --color scheme +vim.cmd.colorscheme "everforest" -require("catppuccin").setup(plugins, opts) -- color scheme -- -vim.cmd.colorscheme "catppuccin" +--require("catppuccin").setup(plugins, opts) -- color scheme -- +--schemevim.cmd.colorscheme "catppuccin" require('lualine').setup() -- bottom line diff --git a/lazy-lock.json b/lazy-lock.json index f2987ad..0e6b39f 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -1,12 +1,12 @@ { - "catppuccin": { "branch": "main", "commit": "fc98570d85ae772e56dc42cf8d7d6a497a909bdb" }, - "image.nvim": { "branch": "master", "commit": "9be5ede323756d7ee2bbef2bc157767b3972cce6" }, + "everforest": { "branch": "main", "commit": "5e0e32a569fb464911342f0d421721cc1c94cf25" }, + "image.nvim": { "branch": "master", "commit": "baa13e6351e46b576620d5e920d5e81adff435a4" }, "lazy.nvim": { "branch": "main", "commit": "31ddbea7c10b6920c9077b66c97951ca8682d5c8" }, "lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" }, "neo-tree.nvim": { "branch": "v3.x", "commit": "7aad1bf3f6b849cbf108e02c55ad4d701cb4d33a" }, "nui.nvim": { "branch": "main", "commit": "cbd2668414331c10039278f558630ed19b93e69b" }, - "nvim-treesitter": { "branch": "master", "commit": "40e8c92f99ef26625ff2206f5e183ac3109f20ba" }, - "nvim-web-devicons": { "branch": "master", "commit": "6e355632387a085f15a66ad68cf681c1d7374a04" }, + "nvim-treesitter": { "branch": "master", "commit": "3e10cffbb2a022cd8e2aaea9f4fffb514065e77c" }, + "nvim-web-devicons": { "branch": "master", "commit": "b3468391470034353f0e5110c70babb5c62967d3" }, "plenary.nvim": { "branch": "master", "commit": "8aad4396840be7fc42896e3011751b7609ca4119" }, "telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" } } \ No newline at end of file diff --git a/lua/plugins.lua b/lua/plugins.lua index ae0a36d..6e7aa67 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -1,5 +1,7 @@ return { - { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, -- colour scheme -- +-- {"catppuccin/nvim", name = "catppuccin", priority = 1000}, -- colour scheme -- + + {"neanias/everforest-nvim", name = 'everforest', version = false, lazy = false, priority = 1000 }, {'nvim-telescope/telescope.nvim', tag = '0.1.6', -- fuzzy finder (telescope) -- dependencies = { 'nvim-lua/plenary.nvim' }},