Compare commits

..

No commits in common. "da6a3e4f0f0e927d092e05e15c5933a645adcbde" and "e37f918795efc7b8ec56ead4719071b4c1f25aac" have entirely different histories.

3 changed files with 2 additions and 16 deletions

View File

@ -1,5 +1,5 @@
function __fish-timesheets-available-projects function __fish-timesheets-available-projects
grep 'account Project:.*' "$TIMESHEET_LEDGER_HOME/config/accounts.dat" | cut -f2 -d ' ' grep 'account Project:.*' "$TIMESHEET_LEDGER_HOME/config/02_accounts.dat" | cut -f2 -d ' '
end end
function __fish-timesheets-running-projects function __fish-timesheets-running-projects

View File

@ -6,7 +6,6 @@ return require("lazy").setup({
"tpope/vim-fugitive", -- Git integration "tpope/vim-fugitive", -- Git integration
"tpope/vim-vinegar", -- Netrw improvements "tpope/vim-vinegar", -- Netrw improvements
{ "tpope/vim-obsession", cmd = "Obsession" }, -- Session.vim management { "tpope/vim-obsession", cmd = "Obsession" }, -- Session.vim management
"tpope/vim-dadbod", -- database access
{ {
"kristijanhusak/vim-dadbod-ui", "kristijanhusak/vim-dadbod-ui",
cmd = "DBUI", cmd = "DBUI",
@ -62,18 +61,7 @@ return require("lazy").setup({
-- Language support -- Language support
{ "tpope/vim-rails", ft = "ruby" }, -- Enables all rails command through vim and integrates with projectionist { "tpope/vim-rails", ft = "ruby" }, -- Enables all rails command through vim and integrates with projectionist
{ "c-brenn/phoenix.vim", ft = "elixir" }, -- Similar to vim-rails, but for phoenix { "c-brenn/phoenix.vim", ft = "elixir" }, -- Similar to vim-rails, but for phoenix
{ "Olical/conjure", -- Lisp languages REPL integration
"Olical/conjure",
init = function()
vim.g["conjure#filetypes"] = {
"clojure",
"fennel",
"racket",
"scheme",
"lisp",
}
end,
}, -- Lisp languages REPL integration
"Olical/aniseed", -- Fennel nvim support "Olical/aniseed", -- Fennel nvim support
{ {
"vimwiki/vimwiki", "vimwiki/vimwiki",

View File

@ -2,7 +2,5 @@
require("devcontainer").setup({ require("devcontainer").setup({
autocommands = { autocommands = {
clean = true, clean = true,
init = true,
update = true,
}, },
}) })