Commafiles
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
neovim/.config/nvim/lazy-lock.json
|
||||||
|
vim/.config/nvim_undodir/
|
||||||
@@ -5,7 +5,7 @@ vim.g.maplocalleader = " "
|
|||||||
-- [[ Setting options ]]
|
-- [[ Setting options ]]
|
||||||
|
|
||||||
-- Fat cursor
|
-- Fat cursor
|
||||||
vim.opt.guicursor = ""
|
-- vim.opt.guicursor = ""
|
||||||
|
|
||||||
-- Make relative line numbers default
|
-- Make relative line numbers default
|
||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
@@ -31,7 +31,7 @@ vim.opt.breakindent = true
|
|||||||
|
|
||||||
-- Save undo history
|
-- Save undo history
|
||||||
vim.opt.undofile = true
|
vim.opt.undofile = true
|
||||||
vim.opt.undodir = os.getenv("HOME") .. "/.cache/nvim_undodir"
|
vim.opt.undodir = os.getenv("HOME") .. "/.vim/nvim_undodir"
|
||||||
vim.opt.swapfile = false
|
vim.opt.swapfile = false
|
||||||
vim.opt.backup = false
|
vim.opt.backup = false
|
||||||
|
|
||||||
@@ -206,15 +206,31 @@ require("lazy").setup({
|
|||||||
|
|
||||||
-- Colorscheme
|
-- Colorscheme
|
||||||
{
|
{
|
||||||
-- "blazkowolf/gruber-darker.nvim",
|
"Yagua/nebulous.nvim",
|
||||||
-- "ellisonleao/gruvbox.nvim",
|
|
||||||
-- "rebelot/kanagawa.nvim",
|
|
||||||
-- "vague2k/vague.nvim",
|
|
||||||
-- "savq/melange-nvim",
|
|
||||||
"bartekjaszczak/gruv-vsassist.nvim",
|
|
||||||
config = function()
|
config = function()
|
||||||
local theme = "gruv-vsassist"
|
require("nebulous").setup({
|
||||||
vim.cmd.colorscheme(theme)
|
variant = "fullmoon",
|
||||||
|
disable = {
|
||||||
|
background = true,
|
||||||
|
endOfBuffer = false,
|
||||||
|
terminal_colors = true,
|
||||||
|
},
|
||||||
|
italic = {
|
||||||
|
comments = true,
|
||||||
|
keywords = true,
|
||||||
|
functions = false,
|
||||||
|
variables = false,
|
||||||
|
},
|
||||||
|
custom_colors = { -- this table can hold any group of colors with their respective values
|
||||||
|
LineNr = { fg = "#5BBBDA", bg = "NONE", style = "NONE" },
|
||||||
|
CursorLineNr = { fg = "#E1CD6C", bg = "NONE", style = "NONE" },
|
||||||
|
|
||||||
|
-- it is possible to specify only the element to be changed
|
||||||
|
TelescopePreviewBorder = { fg = "#A13413" },
|
||||||
|
LspDiagnosticsDefaultError = { bg = "#E11313" },
|
||||||
|
TSTagDelimiter = { style = "bold,italic" },
|
||||||
|
}
|
||||||
|
})
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -254,7 +270,6 @@ require("lazy").setup({
|
|||||||
},
|
},
|
||||||
|
|
||||||
-- LSP
|
-- LSP
|
||||||
--[[
|
|
||||||
{
|
{
|
||||||
"VonHeikemen/lsp-zero.nvim",
|
"VonHeikemen/lsp-zero.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
@@ -311,5 +326,4 @@ require("lazy").setup({
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
]]
|
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user