Compare commits

..

No commits in common. "ae54f5b6dca3137ec0f1288090ac6a08db7d7e5f" and "c1ca16583beceace7f683be20fdf36691b8ef945" have entirely different histories.

6 changed files with 30 additions and 58 deletions

View File

@ -16,7 +16,7 @@
"fzf-lua": { "branch": "main", "commit": "15d5cd9a74da7f8739030a5c411c046c70f66a60" }, "fzf-lua": { "branch": "main", "commit": "15d5cd9a74da7f8739030a5c411c046c70f66a60" },
"gitsigns.nvim": { "branch": "main", "commit": "ac5aba6dce8c06ea22bea2c9016f51a2dbf90dc7" }, "gitsigns.nvim": { "branch": "main", "commit": "ac5aba6dce8c06ea22bea2c9016f51a2dbf90dc7" },
"gp.nvim": { "branch": "main", "commit": "2372d5323c6feaa2e9c19f7ccb537c615d878e18" }, "gp.nvim": { "branch": "main", "commit": "2372d5323c6feaa2e9c19f7ccb537c615d878e18" },
"grug-far.nvim": { "branch": "main", "commit": "f9a74468d909d3893eec01b39b17dae9a4fe308f" }, "grug-far.nvim": { "branch": "main", "commit": "1b7a54633071cbb7a378162b8f04a38913987d64" },
"harpoon": { "branch": "harpoon2", "commit": "ed1f853847ffd04b2b61c314865665e1dadf22c7" }, "harpoon": { "branch": "harpoon2", "commit": "ed1f853847ffd04b2b61c314865665e1dadf22c7" },
"img-clip.nvim": { "branch": "main", "commit": "24c13df08e3fe66624bed5350a2a780f77f1f65b" }, "img-clip.nvim": { "branch": "main", "commit": "24c13df08e3fe66624bed5350a2a780f77f1f65b" },
"inc-rename.nvim": { "branch": "main", "commit": "f9b9e5b9a75074810f40881b7e254b5bbeaf122e" }, "inc-rename.nvim": { "branch": "main", "commit": "f9b9e5b9a75074810f40881b7e254b5bbeaf122e" },
@ -47,7 +47,7 @@
"nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" }, "nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" },
"nvim-parinfer": { "branch": "master", "commit": "5ca09287ab3f4144f78ff7977fabc27466f71044" }, "nvim-parinfer": { "branch": "master", "commit": "5ca09287ab3f4144f78ff7977fabc27466f71044" },
"nvim-spider": { "branch": "main", "commit": "9b9a1cf88a10790de69d3b0562d7d612f23561d5" }, "nvim-spider": { "branch": "main", "commit": "9b9a1cf88a10790de69d3b0562d7d612f23561d5" },
"nvim-treesitter": { "branch": "master", "commit": "38959800c2439c890e3238af559f0dc3be45e393" }, "nvim-treesitter": { "branch": "master", "commit": "cf0eabc16cf32d69f7612d0e023ef210d84cdde6" },
"nvim-treesitter-context": { "branch": "master", "commit": "198720b4016af04c9590f375d714d5bf8afecc1a" }, "nvim-treesitter-context": { "branch": "master", "commit": "198720b4016af04c9590f375d714d5bf8afecc1a" },
"nvim-treesitter-textobjects": { "branch": "master", "commit": "143856b1cee509a190cc8c17ddb0638002171235" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "143856b1cee509a190cc8c17ddb0638002171235" },
"nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" }, "nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" },

View File

@ -385,27 +385,20 @@ return {
{ {
"yetone/avante.nvim", "yetone/avante.nvim",
event = "VeryLazy", event = "VeryLazy",
version = false, version = false, -- Set this to "*" to always pull the latest release version, or set it to false to update to the latest code changes.
-- for macos opts = {
opts = vim.loop.os_uname().sysname == "Darwin" -- add any opts here
and { -- for example
provider = "copilot", provider = "copilot",
copilot = { copilot = {
-- endpoint = "https://api.githubcopilot.com/chat/completions", -- endpoint = "https://api.githubcopilot.com/chat/completions",
model = "gpt-4o", model = "gpt-4o",
-- timeout = 30000, -- timeout in milliseconds -- timeout = 30000, -- timeout in milliseconds
-- temperature = 0, -- adjust if needed -- temperature = 0, -- adjust if needed
-- max_tokens = 4096, -- max_tokens = 4096,
-- reasoning_effort = "high" -- only supported for reasoning models (o1, etc.) -- reasoning_effort = "high" -- only supported for reasoning models (o1, etc.)
},
}
-- for linux
or {
provider = "openai",
openai = {
model = "gpt-4o",
},
}, },
},
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true` -- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
build = "make", build = "make",
-- build = "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false" -- for windows -- build = "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false" -- for windows
@ -456,8 +449,8 @@ return {
opts = { opts = {
file_with_line = { file_with_line = {
create_list_item = function() create_list_item = function()
local file_path = vim.fn.expand("%:p") -- Absolute file path local file_path = vim.fn.expand("%:p") -- Absolute path of the file
local line_number = vim.fn.line(".") local line_number = vim.fn.line(".") -- Current line number
if file_path == "" then if file_path == "" then
return nil return nil
@ -472,7 +465,7 @@ return {
select = function(list_item, list, option) select = function(list_item, list, option)
vim.cmd("edit " .. list_item.context.file_path) vim.cmd("edit " .. list_item.context.file_path)
-- Jump to the line -- Jump to the specified line
vim.api.nvim_win_set_cursor(0, { list_item.context.line_number, 0 }) vim.api.nvim_win_set_cursor(0, { list_item.context.line_number, 0 })
end, end,
}, },

View File

@ -1,2 +1,2 @@
#!/bin/sh #!/bin/zsh
node ~/git/td/dist/cli.js node ~/git/td/dist/cli.js

View File

@ -1,8 +1,13 @@
#!/bin/sh #!/bin/zsh
# Check if Zsh is available if ! tmux has-session -t td-cli 2>/dev/null; then
if command -v zsh >/dev/null 2>&1; then tmux setenv -g TD_TASK_DIR ~/git/tasks/
zsh scripts/tmux-td-zsh tmux new-session -d -s td-cli ~/installs/scripts/td
else fi
bash scripts/tmux-td-bash
if [[ "$(tmux display-message -p -F "#{session_name}")" == "td-cli" ]]; then
tmux detach-client
tmux display-popup -C
else
tmux display-popup -d -C -E -w90% -h90% 'tmux attach-session -x -f wait-exit -t td-cli'
fi fi

View File

@ -1,13 +0,0 @@
#!/bin/bash
if ! tmux has-session -t td-cli 2>/dev/null; then
tmux setenv -g TD_TASK_DIR ~/git/tasks/
tmux new-session -d -s td-cli /home/omnissiah/installs/scripts/td
fi
if [ "$(tmux display-message -p -F "#{session_name}")" = "td-cli" ]; then
tmux detach-client
tmux display-popup -C
else
tmux display-popup -d -C -E -w90% -h90% 'tmux attach-session -x -t td-cli'
fi

View File

@ -1,13 +0,0 @@
#!/bin/zsh
if ! tmux has-session -t td-cli 2>/dev/null; then
tmux setenv -g TD_TASK_DIR ~/git/tasks/
tmux new-session -d -s td-cli ~/installs/scripts/td
fi
if [[ "$(tmux display-message -p -F "#{session_name}")" == "td-cli" ]]; then
tmux detach-client
tmux display-popup -C
else
tmux display-popup -d -C -E -w90% -h90% 'tmux attach-session -x -f wait-exit -t td-cli'
fi