Compare commits
No commits in common. "9fbb955000365a4f4a98f8ecca575fb3a36db93f" and "4b71f4a0110200639c41858e76fc63a1f207b598" have entirely different histories.
9fbb955000
...
4b71f4a011
4 changed files with 27 additions and 55 deletions
|
@ -221,8 +221,7 @@ gaps top 32
|
|||
|
||||
assign [class="tidal-hifi"] 4
|
||||
assign [class="discord"] 5
|
||||
assign [class="Element"] 6
|
||||
assign [class="Signal"] 6
|
||||
assign [class="vesktop"] 5
|
||||
assign [class="thunderbird"] 7
|
||||
|
||||
# startup programs
|
||||
|
|
|
@ -10,34 +10,13 @@ return {
|
|||
"nvim-lua/plenary.nvim",
|
||||
"tpope/vim-surround",
|
||||
"tpope/vim-repeat",
|
||||
{
|
||||
"laytan/cloak.nvim",
|
||||
config = function()
|
||||
require("cloak").setup({
|
||||
enabled = true,
|
||||
cloak_character = "*",
|
||||
highlight_group = "Comment",
|
||||
cloak_length = nil, -- Provide a number if you want to hide the true length of the value.
|
||||
try_all_patterns = true,
|
||||
cloak_telescope = true,
|
||||
cloak_on_leave = false,
|
||||
patterns = {
|
||||
{
|
||||
file_pattern = ".env*",
|
||||
cloak_pattern = "=.+",
|
||||
replace = nil,
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
"laytan/cloak.nvim",
|
||||
{
|
||||
"ThePrimeagen/vim-be-good",
|
||||
disabled = false,
|
||||
disabled = false,
|
||||
},
|
||||
{
|
||||
"jbyuki/instant.nvim",
|
||||
disabled = true,
|
||||
config = function()
|
||||
vim.g.instant_username = "tsousa"
|
||||
end,
|
||||
|
|
|
@ -136,27 +136,22 @@ return {
|
|||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"mrcjkb/rustaceanvim",
|
||||
version = "^5", -- Recommended
|
||||
lazy = false, -- This plugin is already lazy
|
||||
},
|
||||
|
||||
{
|
||||
"zbirenbaum/copilot.lua",
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require("copilot").setup({
|
||||
suggestion = {
|
||||
enabled = true,
|
||||
auto_trigger = true,
|
||||
keymap = {
|
||||
accept = "<C-q>",
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "zbirenbaum/copilot.lua",
|
||||
-- event = "InsertEnter",
|
||||
-- config = function()
|
||||
-- require("copilot").setup({
|
||||
-- suggestion = {
|
||||
-- enabled = true,
|
||||
-- auto_trigger = true,
|
||||
-- keymap = {
|
||||
-- accept = "<C-q>",
|
||||
-- },
|
||||
-- },
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
|
@ -224,15 +219,15 @@ return {
|
|||
local capabilities =
|
||||
vim.tbl_deep_extend("force", lsp_defaults.capabilities, require("cmp_nvim_lsp").default_capabilities())
|
||||
-- external (non mason) lsps
|
||||
-- lspconfig.rust_analyzer.setup({
|
||||
-- capabilities = capabilities,
|
||||
-- cmd = {
|
||||
-- "rustup",
|
||||
-- "run",
|
||||
-- "stable",
|
||||
-- "rust-analyzer",
|
||||
-- },
|
||||
-- })
|
||||
lspconfig.rust_analyzer.setup({
|
||||
capabilities = capabilities,
|
||||
cmd = {
|
||||
"rustup",
|
||||
"run",
|
||||
"stable",
|
||||
"rust-analyzer",
|
||||
},
|
||||
})
|
||||
|
||||
require("mason-lspconfig").setup({
|
||||
ensure_installed = {
|
||||
|
|
|
@ -120,7 +120,6 @@ format = ' [$symbol($version )(\($switch_indicator$switch_name\) )]($style)'
|
|||
|
||||
[package]
|
||||
symbol = " "
|
||||
format = ' [$symbol($version(-$name) )]($style)'
|
||||
|
||||
[pijul_channel]
|
||||
symbol = " "
|
||||
|
|
Loading…
Reference in a new issue