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="tidal-hifi"] 4
|
||||||
assign [class="discord"] 5
|
assign [class="discord"] 5
|
||||||
assign [class="Element"] 6
|
assign [class="vesktop"] 5
|
||||||
assign [class="Signal"] 6
|
|
||||||
assign [class="thunderbird"] 7
|
assign [class="thunderbird"] 7
|
||||||
|
|
||||||
# startup programs
|
# startup programs
|
||||||
|
|
|
@ -10,34 +10,13 @@ return {
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
"tpope/vim-surround",
|
"tpope/vim-surround",
|
||||||
"tpope/vim-repeat",
|
"tpope/vim-repeat",
|
||||||
{
|
"laytan/cloak.nvim",
|
||||||
"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,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ThePrimeagen/vim-be-good",
|
"ThePrimeagen/vim-be-good",
|
||||||
disabled = false,
|
disabled = false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"jbyuki/instant.nvim",
|
"jbyuki/instant.nvim",
|
||||||
disabled = true,
|
|
||||||
config = function()
|
config = function()
|
||||||
vim.g.instant_username = "tsousa"
|
vim.g.instant_username = "tsousa"
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -136,27 +136,22 @@ return {
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"mrcjkb/rustaceanvim",
|
|
||||||
version = "^5", -- Recommended
|
|
||||||
lazy = false, -- This plugin is already lazy
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
-- {
|
||||||
"zbirenbaum/copilot.lua",
|
-- "zbirenbaum/copilot.lua",
|
||||||
event = "InsertEnter",
|
-- event = "InsertEnter",
|
||||||
config = function()
|
-- config = function()
|
||||||
require("copilot").setup({
|
-- require("copilot").setup({
|
||||||
suggestion = {
|
-- suggestion = {
|
||||||
enabled = true,
|
-- enabled = true,
|
||||||
auto_trigger = true,
|
-- auto_trigger = true,
|
||||||
keymap = {
|
-- keymap = {
|
||||||
accept = "<C-q>",
|
-- accept = "<C-q>",
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
})
|
-- })
|
||||||
end,
|
-- end,
|
||||||
},
|
-- },
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
@ -224,15 +219,15 @@ return {
|
||||||
local capabilities =
|
local capabilities =
|
||||||
vim.tbl_deep_extend("force", lsp_defaults.capabilities, require("cmp_nvim_lsp").default_capabilities())
|
vim.tbl_deep_extend("force", lsp_defaults.capabilities, require("cmp_nvim_lsp").default_capabilities())
|
||||||
-- external (non mason) lsps
|
-- external (non mason) lsps
|
||||||
-- lspconfig.rust_analyzer.setup({
|
lspconfig.rust_analyzer.setup({
|
||||||
-- capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
-- cmd = {
|
cmd = {
|
||||||
-- "rustup",
|
"rustup",
|
||||||
-- "run",
|
"run",
|
||||||
-- "stable",
|
"stable",
|
||||||
-- "rust-analyzer",
|
"rust-analyzer",
|
||||||
-- },
|
},
|
||||||
-- })
|
})
|
||||||
|
|
||||||
require("mason-lspconfig").setup({
|
require("mason-lspconfig").setup({
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
|
|
|
@ -120,7 +120,6 @@ format = ' [$symbol($version )(\($switch_indicator$switch_name\) )]($style)'
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
symbol = " "
|
symbol = " "
|
||||||
format = ' [$symbol($version(-$name) )]($style)'
|
|
||||||
|
|
||||||
[pijul_channel]
|
[pijul_channel]
|
||||||
symbol = " "
|
symbol = " "
|
||||||
|
|
Loading…
Reference in a new issue