Compare commits
2 Commits
e37f918795
...
da6a3e4f0f
Author | SHA1 | Date |
---|---|---|
Ensar Sarajčić | da6a3e4f0f | |
Ensar Sarajčić | c9b3712c3b |
|
@ -1,5 +1,5 @@
|
||||||
function __fish-timesheets-available-projects
|
function __fish-timesheets-available-projects
|
||||||
grep 'account Project:.*' "$TIMESHEET_LEDGER_HOME/config/02_accounts.dat" | cut -f2 -d ' '
|
grep 'account Project:.*' "$TIMESHEET_LEDGER_HOME/config/accounts.dat" | cut -f2 -d ' '
|
||||||
end
|
end
|
||||||
|
|
||||||
function __fish-timesheets-running-projects
|
function __fish-timesheets-running-projects
|
||||||
|
|
|
@ -6,6 +6,7 @@ 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",
|
||||||
|
@ -61,7 +62,18 @@ 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",
|
||||||
|
|
|
@ -2,5 +2,7 @@
|
||||||
require("devcontainer").setup({
|
require("devcontainer").setup({
|
||||||
autocommands = {
|
autocommands = {
|
||||||
clean = true,
|
clean = true,
|
||||||
|
init = true,
|
||||||
|
update = true,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue