Fix conjure for rust

main
Ensar Sarajčić 2023-09-26 19:04:02 +02:00
parent c9b3712c3b
commit da6a3e4f0f
2 changed files with 13 additions and 2 deletions

View File

@ -1,5 +1,5 @@
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
function __fish-timesheets-running-projects

View File

@ -62,7 +62,18 @@ return require("lazy").setup({
-- Language support
{ "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
"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
{
"vimwiki/vimwiki",