Periodic update with latest settings.
This commit is contained in:
parent
9db74a80ff
commit
10fd706247
3 changed files with 60 additions and 57 deletions
|
@ -1,30 +1,71 @@
|
||||||
[colors.bright]
|
[colors.bright]
|
||||||
black = "0x32302f"
|
#black = "0x32302f"
|
||||||
blue = "0x7daea3"
|
#blue = "0x7daea3"
|
||||||
cyan = "0x89b482"
|
#cyan = "0x89b482"
|
||||||
green = "0xa9b665"
|
#green = "0xa9b665"
|
||||||
magenta = "0xd3869b"
|
#magenta = "0xd3869b"
|
||||||
red = "0xea6962"
|
#red = "0xea6962"
|
||||||
white = "0xd4be98"
|
#white = "0xd4be98"
|
||||||
yellow = "0xd8a657"
|
#yellow = "0xd8a657"
|
||||||
|
black = "0x867462"
|
||||||
|
red = "0xD47766"
|
||||||
|
green = "0x85B695"
|
||||||
|
yellow = "0xEBC06D"
|
||||||
|
blue = "0xA3A9CE"
|
||||||
|
magenta ="0xCF9BC2"
|
||||||
|
cyan = "0x89B3B6"
|
||||||
|
white = "0xECE1D7"
|
||||||
|
|
||||||
[colors.cursor]
|
[colors.cursor]
|
||||||
cursor = "CellForeground"
|
cursor = "CellForeground"
|
||||||
text = "CellBackground"
|
text = "CellBackground"
|
||||||
|
|
||||||
|
#colors:
|
||||||
|
# primary:
|
||||||
|
# foreground: '#ECE1D7'
|
||||||
|
# background: '#292522'
|
||||||
|
# normal:
|
||||||
|
# black: '#34302C'
|
||||||
|
# red: '#BD8183'
|
||||||
|
# green: '#78997A'
|
||||||
|
# yellow: '#E49B5D'
|
||||||
|
# blue: '#7F91B2'
|
||||||
|
# magenta: '#B380B0'
|
||||||
|
# cyan: '#7B9695'
|
||||||
|
# white: '#C1A78E'
|
||||||
|
# bright:
|
||||||
|
# black: '#867462'
|
||||||
|
# red: '#D47766'
|
||||||
|
# green: '#85B695'
|
||||||
|
# yellow: '#EBC06D'
|
||||||
|
# blue: '#A3A9CE'
|
||||||
|
# magenta: '#CF9BC2'
|
||||||
|
# cyan: '#89B3B6'
|
||||||
|
# white: '#ECE1D7'
|
||||||
|
|
||||||
[colors.normal]
|
[colors.normal]
|
||||||
black = "0x32302f"
|
#black = "0x32302f"
|
||||||
blue = "0x7daea3"
|
#blue = "0x7daea3"
|
||||||
cyan = "0x89b482"
|
#cyan = "0x89b482"
|
||||||
green = "0xa9b665"
|
#green = "0xa9b665"
|
||||||
magenta = "0xd3869b"
|
#magenta = "0xd3869b"
|
||||||
red = "0xea6962"
|
#red = "0xea6962"
|
||||||
white = "0xd4be98"
|
#white = "0xd4be98"
|
||||||
yellow = "0xd8a657"
|
#yellow = "0xd8a657"
|
||||||
|
black = "0x34302C"
|
||||||
|
red = "0xBD8183"
|
||||||
|
green = "0x78997A"
|
||||||
|
yellow = "0xE49B5D"
|
||||||
|
blue = "0x7F91B2"
|
||||||
|
magenta ="0xB380B0"
|
||||||
|
cyan = "0x7B9695"
|
||||||
|
white = "0xC1A78E"
|
||||||
|
|
||||||
[colors.primary]
|
[colors.primary]
|
||||||
background = "0x1d2021"
|
#background = "0x1d2021"
|
||||||
foreground = "0xd4be98"
|
#foreground = "0xd4be98"
|
||||||
|
foreground = '0xECE1D7'
|
||||||
|
background = '0x292522'
|
||||||
|
|
||||||
[colors.selection]
|
[colors.selection]
|
||||||
background = "CellForeground"
|
background = "CellForeground"
|
||||||
|
|
|
@ -182,19 +182,6 @@ require("lazy").setup({
|
||||||
|
|
||||||
-- tsserver = typescript language server, works for JS as well.
|
-- tsserver = typescript language server, works for JS as well.
|
||||||
lsp.tsserver.setup{}
|
lsp.tsserver.setup{}
|
||||||
|
|
||||||
-- gopls = go language server
|
|
||||||
lsp.gopls.setup({
|
|
||||||
settings = {
|
|
||||||
gopls = {
|
|
||||||
analyses = {
|
|
||||||
unusedparams = true,
|
|
||||||
},
|
|
||||||
staticcheck = true,
|
|
||||||
gofumpt = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -347,15 +334,6 @@ require("lazy").setup({
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Automatically close pairs such as {} [] ()
|
|
||||||
-- -------------------------------------------------------------------------
|
|
||||||
{
|
|
||||||
'm4xshen/autoclose.nvim',
|
|
||||||
config = function(_)
|
|
||||||
require("autoclose").setup()
|
|
||||||
end
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Special highlighting and tracking for certain notable words
|
-- Special highlighting and tracking for certain notable words
|
||||||
-- -------------------------------------------------------------------------
|
-- -------------------------------------------------------------------------
|
||||||
{
|
{
|
||||||
|
@ -394,22 +372,6 @@ require("lazy").setup({
|
||||||
-- -------------------------------------------------------------------------
|
-- -------------------------------------------------------------------------
|
||||||
'mboughaba/i3config.vim',
|
'mboughaba/i3config.vim',
|
||||||
|
|
||||||
-- Golang support
|
|
||||||
-- -------------------------------------------------------------------------
|
|
||||||
{
|
|
||||||
"ray-x/go.nvim",
|
|
||||||
dependencies = {
|
|
||||||
"ray-x/guihua.lua",
|
|
||||||
"neovim/nvim-lspconfig",
|
|
||||||
"nvim-treesitter/nvim-treesitter",
|
|
||||||
},
|
|
||||||
config = function()
|
|
||||||
require("go").setup()
|
|
||||||
end,
|
|
||||||
ft = { "go", "gomod" },
|
|
||||||
lazy = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Rust support
|
-- Rust support
|
||||||
-- -------------------------------------------------------------------------
|
-- -------------------------------------------------------------------------
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,7 +15,7 @@ vim.api.nvim_create_autocmd('FileType', {
|
||||||
|
|
||||||
metals_config.settings = {
|
metals_config.settings = {
|
||||||
-- Comment this out to use latest stable.
|
-- Comment this out to use latest stable.
|
||||||
serverVersion = "latest.snapshot",
|
-- serverVersion = "latest.snapshot",
|
||||||
showImplicitArguments = true,
|
showImplicitArguments = true,
|
||||||
showInferredType = true,
|
showInferredType = true,
|
||||||
superMethodLensesEnabled = false
|
superMethodLensesEnabled = false
|
||||||
|
|
Loading…
Add table
Reference in a new issue