Max Del Canto
Max Del Canto
Try something like this const task = cron.schedule('* * * * *', () => { executeAndDestroy() }, { scheduled: true, America/Los_Angeles' }) const executeAndDestroy = async () => { //...
> @maxmx03 hey were you able to enable format on save on all file extension types for each language type? yes, the plugin Takuya use to format javascript files didnt...
> Why are other plugins like colorizer moved to ftdetect? just moving `mason.rc.lua` to `plugin/0_mason.rc.lua` solves the issue, no? yes you can do that or you can move only mason.rc.lua...
this is how i fix: ## install [sdkman](https://sdkman.io/) ``` curl -s "https://get.sdkman.io" | bash ``` ## install openjdk (eclipse) ``` sdk install java 21.0.1-tem ``` ## install maven ``` sdk...
this is how i did ```json "emmet.includeLanguages": { "norg": "html", "markdown": "html" }, "emmet.excludeLanguages": [], ``` in your case ```json "php": "html" ```
```lua dracula.setup{ on_highlights = function (colors, color) return { DashboardHeader = { fg = colors.purple } } end } ```
> The autocomplete window looks like this: to fix autocomplete: try set `pmenu` ot `false` then enable pseudo transparency `vim.opt.opt.pumblend = 10` > It's beautiful but there are certain colors...
> And then am I supposed to set values for MatchPattern in the same return block? yes, full example: ```lua 'maxmx03/solarized.nvim', lazy = false, priority = 1000, ---@type solarized.config opts...
Fixed in latest commit
I guess you're talking about [noice.nvim](https://github.com/folke/noice.nvim), Maybe there is an option like winblend to fix this. Plugins like **Fidget** and **ToggleTerm** have this option: ```lua return { 'j-hui/fidget.nvim', opts =...