Fix conjure for rust
parent
c9b3712c3b
commit
da6a3e4f0f
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue