everforest ricing

This commit is contained in:
godot 2024-04-17 23:27:50 +02:00
parent 51b08f4f82
commit 044b0fde49
4 changed files with 16 additions and 7 deletions

View File

@ -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)

View File

@ -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

View File

@ -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" }
}

View File

@ -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' }},