Compare commits

..

2 Commits

Author SHA1 Message Date
Robert Kmieć
8e017728d2 Nvim: optimize startup time 2023-08-02 10:52:41 +02:00
Robert Kmieć
0bb033cca0 Nvim: add colorschemes file 2023-08-02 10:52:07 +02:00
4 changed files with 87 additions and 2 deletions

View File

@@ -0,0 +1,79 @@
return {{
"xero/miasma.nvim",
lazy = false,
priority = 1000,
config = function()
--vim.cmd("colorscheme miasma")
end,
},
{
"wuelnerdotexe/vim-enfocado",
lazy = false,
config = function()
--vim.cmd([[ colorscheme enfoccado]])
end
},
{
"fenetikm/falcon",
lazy = false,
config = function()
--vim.cmd([[ colorscheme falcon]])
end
},
{
"casr/vim-colors-reference",
lazy = false,
config = function()
--vim.cmd([[ colorscheme reference]])
end
},
{
"blazkowolf/gruber-darker.nvim",
lazy = false,
config = function()
--vim.cmd([[ colorscheme gruber-darker]])
end
},
{
"rebelot/kanagawa.nvim",
lazy = false,
config = function()
--vim.cmd([[ colorscheme kanagawa]])
end
},
{
"jaredgorski/spacecamp",
lazy = false,
config = function()
--vim.cmd([[ colorscheme spacecamp]])
end
},
{
"lifepillar/vim-gruvbox8",
lazy = false,
config = function()
vim.cmd([[ colorscheme gruvbox8]])
end
},
{
"marko-cerovac/material.nvim",
lazy = false,
config = function()
--vim.cmd([[ colorscheme material]])
end
},
{
"srcery-colors/srcery-vim",
lazy = false,
config = function()
--vim.cmd([[ colorscheme srcery]])
end
},
{
"tanvirtin/monokai.nvim",
lazy = false,
config = function()
--vim.cmd([[ colorscheme monokai]])
end
}
}

View File

@@ -18,7 +18,6 @@ return {
start_in_insert = true, start_in_insert = true,
-- These are passed to nvim_open_win -- These are passed to nvim_open_win
anchor = "SW",
border = "rounded", border = "rounded",
-- 'editor' and 'win' will default to being centered -- 'editor' and 'win' will default to being centered
relative = "cursor", relative = "cursor",
@@ -37,6 +36,10 @@ return {
winblend = 10, winblend = 10,
-- Disable line wrapping -- Disable line wrapping
wrap = false, wrap = false,
list = true,
listchars = "precedes:…,extends:…",
-- Increase this for more context when text scrolls off the window
sidescrolloff = 0,
}, },
-- Set to `false` to disable -- Set to `false` to disable
@@ -117,7 +120,6 @@ return {
-- Options for built-in selector -- Options for built-in selector
builtin = { builtin = {
-- These are passed to nvim_open_win -- These are passed to nvim_open_win
anchor = "NW",
border = "rounded", border = "rounded",
-- 'editor' and 'win' will default to being centered -- 'editor' and 'win' will default to being centered
relative = "editor", relative = "editor",
@@ -126,6 +128,8 @@ return {
win_options = { win_options = {
-- Window transparency (0-100) -- Window transparency (0-100)
winblend = 10, winblend = 10,
cursorline = true,
cursorlineopt = "both",
}, },
-- These can be integers or a float between 0 and 1 (e.g. 0.4 for 40%) -- These can be integers or a float between 0 and 1 (e.g. 0.4 for 40%)

View File

@@ -1,5 +1,6 @@
return { return {
'jakewvincent/mkdnflow.nvim', 'jakewvincent/mkdnflow.nvim',
ft = { "markdown" },
opts = { opts = {
modules = { modules = {
bib = true, bib = true,

View File

@@ -1,5 +1,6 @@
return { return {
'Civitasv/cmake-tools.nvim', 'Civitasv/cmake-tools.nvim',
ft = { "cpp", "c", "cmake" },
config = function() config = function()
--let g:cmake_build_options = [ "-j10" ] --let g:cmake_build_options = [ "-j10" ]
-- --