This commit is contained in:
Christian Nieves
2023-10-10 19:38:47 +00:00
parent 76ebaa0210
commit c7ddb65220
17 changed files with 79 additions and 95 deletions

View File

@ -7,6 +7,7 @@ return {
lazy = false,
},
"ldelossa/litee.nvim",
"cakebaker/scss-syntax.vim",
"ldelossa/litee-calltree.nvim",
"jghauser/mkdir.nvim",
"will133/vim-dirdiff",
@ -44,6 +45,7 @@ return {
{ "<leader>zf", ":lua require('telekasten').find_notes()<CR>", desc = "Find Notes" },
},
},
{ "udalov/kotlin-vim", ft = "kotlin" },
{ "ray-x/go.nvim", ft = "go" },
{ "ray-x/guihua.lua", ft = "go" },

View File

@ -31,8 +31,12 @@ return {
goog("googlepaths"),
goog("google-filetypes"),
goog("ft-java"),
goog("ft-soy"),
goog("ft-gss"),
goog("ft-javascript"),
goog("ft-kotlin"),
goog("ft-proto"),
goog("google-logo"),
goog("critique"),
goog("piper"),
goog("gtimporter"),
@ -137,10 +141,8 @@ return {
"nvim-telescope/telescope.nvim",
},
config = function()
-- vim.notify = require("notify")
-- Here are all the options and their default values:
require("critique.comments").setup({
-- sign = "COMMENT_ICON",
-- Fetch the comments after calling `setup`.
auto_fetch = true,
render_resolved_threads = true,
@ -154,8 +156,6 @@ return {
map("n", "<Leader>ac", [[<Cmd>CritiqueToggleAllComments<CR>]])
map("n", "<Leader>fc", [[<Cmd>CritiqueFetchComments<CR>]])
map("n", "<Leader>tc", [[<Cmd>CritiqueCommentsTelescope<CR>]])
-- vim.fn.sign_define("COMMENT_ICON", { text = "" })
end,
},
{

View File

@ -4,10 +4,10 @@ return {
require("neoscopes").setup({
scopes = {
{
name = "apkdiff",
name = "earlycheckin",
dirs = {
"java/com/google/android/gmscore/tools/earlycheckin/apkdiff",
"javatests/com/google/android/gmscore/tools/earlycheckin/apkdiff",
"java/com/google/android/gmscore/tools/earlycheckin/",
"javatests/com/google/android/gmscore/tools/earlycheckin/",
},
},
{ name = "experimental", dirs = { "experimental/users/cnieves" } },

View File

@ -1,22 +0,0 @@
return {
"ojroques/nvim-osc52",
config = function()
local function copy(lines, _)
require("osc52").copy(table.concat(lines, "\n"))
end
local function paste()
return { vim.fn.split(vim.fn.getreg(""), "\n"), vim.fn.getregtype("") }
end
vim.g.clipboard = {
name = "osc52",
copy = { ["+"] = copy, ["*"] = copy },
paste = { ["+"] = paste, ["*"] = paste },
}
-- Now the '+' register will copy to system clipboard using OSC52
vim.keymap.set("n", "<leader>y", '"+y')
vim.keymap.set("n", "<leader>yy", '"+yy')
end,
}

View File

@ -1,9 +1,8 @@
return {
'preservim/vimux',
'tmux-plugins/vim-tmux',
'christoomey/vim-tmux-navigator',
'whatyouhide/vim-tmux-syntax',
'tmux-plugins/vim-tmux-focus-events',
'jabirali/vim-tmux-yank',
'skywind3000/asyncrun.vim',
"preservim/vimux",
"tmux-plugins/vim-tmux",
"christoomey/vim-tmux-navigator",
"whatyouhide/vim-tmux-syntax",
"tmux-plugins/vim-tmux-focus-events",
"skywind3000/asyncrun.vim",
}