From 10fd706247ddf808f0dcb327ffff8fc7520fc3c2 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Wed, 14 Aug 2024 10:31:25 -0500 Subject: [PATCH] Periodic update with latest settings. --- .config/alacritty/alacritty.toml | 77 ++++++++++++++++++++------ .config/nvim/lua/plugin_management.lua | 38 ------------- .config/nvim/lua/plugins/metals.lua | 2 +- 3 files changed, 60 insertions(+), 57 deletions(-) diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index 5a81ca5..d487b28 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -1,30 +1,71 @@ [colors.bright] -black = "0x32302f" -blue = "0x7daea3" -cyan = "0x89b482" -green = "0xa9b665" -magenta = "0xd3869b" -red = "0xea6962" -white = "0xd4be98" -yellow = "0xd8a657" +#black = "0x32302f" +#blue = "0x7daea3" +#cyan = "0x89b482" +#green = "0xa9b665" +#magenta = "0xd3869b" +#red = "0xea6962" +#white = "0xd4be98" +#yellow = "0xd8a657" +black = "0x867462" +red = "0xD47766" +green = "0x85B695" +yellow = "0xEBC06D" +blue = "0xA3A9CE" +magenta ="0xCF9BC2" +cyan = "0x89B3B6" +white = "0xECE1D7" [colors.cursor] cursor = "CellForeground" 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] -black = "0x32302f" -blue = "0x7daea3" -cyan = "0x89b482" -green = "0xa9b665" -magenta = "0xd3869b" -red = "0xea6962" -white = "0xd4be98" -yellow = "0xd8a657" +#black = "0x32302f" +#blue = "0x7daea3" +#cyan = "0x89b482" +#green = "0xa9b665" +#magenta = "0xd3869b" +#red = "0xea6962" +#white = "0xd4be98" +#yellow = "0xd8a657" +black = "0x34302C" +red = "0xBD8183" +green = "0x78997A" +yellow = "0xE49B5D" +blue = "0x7F91B2" +magenta ="0xB380B0" +cyan = "0x7B9695" +white = "0xC1A78E" [colors.primary] -background = "0x1d2021" -foreground = "0xd4be98" +#background = "0x1d2021" +#foreground = "0xd4be98" +foreground = '0xECE1D7' +background = '0x292522' [colors.selection] background = "CellForeground" diff --git a/.config/nvim/lua/plugin_management.lua b/.config/nvim/lua/plugin_management.lua index 0e9cc54..65c03f2 100644 --- a/.config/nvim/lua/plugin_management.lua +++ b/.config/nvim/lua/plugin_management.lua @@ -182,19 +182,6 @@ require("lazy").setup({ -- tsserver = typescript language server, works for JS as well. lsp.tsserver.setup{} - - -- gopls = go language server - lsp.gopls.setup({ - settings = { - gopls = { - analyses = { - unusedparams = true, - }, - staticcheck = true, - gofumpt = true, - }, - }, - }) end }, @@ -347,15 +334,6 @@ require("lazy").setup({ end }, - -- Automatically close pairs such as {} [] () - -- ------------------------------------------------------------------------- - { - 'm4xshen/autoclose.nvim', - config = function(_) - require("autoclose").setup() - end - }, - -- Special highlighting and tracking for certain notable words -- ------------------------------------------------------------------------- { @@ -394,22 +372,6 @@ require("lazy").setup({ -- ------------------------------------------------------------------------- '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 -- ------------------------------------------------------------------------- { diff --git a/.config/nvim/lua/plugins/metals.lua b/.config/nvim/lua/plugins/metals.lua index 89d7582..305644a 100644 --- a/.config/nvim/lua/plugins/metals.lua +++ b/.config/nvim/lua/plugins/metals.lua @@ -15,7 +15,7 @@ vim.api.nvim_create_autocmd('FileType', { metals_config.settings = { -- Comment this out to use latest stable. - serverVersion = "latest.snapshot", + -- serverVersion = "latest.snapshot", showImplicitArguments = true, showInferredType = true, superMethodLensesEnabled = false