Compare commits
4 commits
4b71f4a011
...
9fbb955000
Author | SHA1 | Date | |
---|---|---|---|
9fbb955000 | |||
a4dd74ff31 | |||
ce19e9fcbf | |||
3cab45704e |
4 changed files with 55 additions and 27 deletions
|
@ -221,7 +221,8 @@ gaps top 32
|
||||||
|
|
||||||
assign [class="tidal-hifi"] 4
|
assign [class="tidal-hifi"] 4
|
||||||
assign [class="discord"] 5
|
assign [class="discord"] 5
|
||||||
assign [class="vesktop"] 5
|
assign [class="Element"] 6
|
||||||
|
assign [class="Signal"] 6
|
||||||
assign [class="thunderbird"] 7
|
assign [class="thunderbird"] 7
|
||||||
|
|
||||||
# startup programs
|
# startup programs
|
||||||
|
|
|
@ -10,13 +10,34 @@ 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,22 +136,27 @@ 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 = {
|
||||||
|
@ -219,15 +224,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,6 +120,7 @@ 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