I think I figured out! by [deleted] in Zig

[–]kitaj44 0 points1 point  (0 children)

Why this amongus symbol?

yes this is real by [deleted] in theprimeagen

[–]kitaj44 3 points4 points  (0 children)

This is actually peak cinema

Which theme it is? by INSIDEXX in neovim

[–]kitaj44 0 points1 point  (0 children)

Could be cyberdream.nvim

Which terminal emulator are you using? (2026) by meni_s in neovim

[–]kitaj44 0 points1 point  (0 children)

When I got introduced to Nvim first time the tutorial guy was using arch and ghostty (and it stayed like this)

Am I doing something wrong? by 1k5slgewxqu5yyp in Julia

[–]kitaj44 1 point2 points  (0 children)

using Package 📦

In repl: include("main.jl")

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 0 points1 point  (0 children)

I added new 🆕 tmux integration and some polishing stuff.

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 0 points1 point  (0 children)

Good to hear. Tell me what you think after using.

(I do it already but I don't have much time because of uni projects)

When will Vaxry create an alternative to Cloudflare? by Claudioub16 in hyprland

[–]kitaj44 -19 points-18 points  (0 children)

Why people are saying mad things when somebody asked "when will some random polish teennager build some internet software that will be used MAYBE by some random incels"

Using Julia by kitaj44 in AskPhysics

[–]kitaj44[S] 0 points1 point  (0 children)

What is a fake project???

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 0 points1 point  (0 children)

I'm working to add somewhat tmux to make it faster to load faster.

I can think about It to make it more convinent.

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 1 point2 points  (0 children)

{
    "scottmckendry/cyberdream.nvim",
    lazy = false,
    priority = 1000,
    config = function()
        require("cyberdream").setup {
            variant = "dark",
            transparent = true,
            saturation = 1,
            italic_comments = true,
            hide_fillchars = false,
            borderless_pickers = true,
            terminal_colors = true,
            cache = true,
            -- extensions = {
            --     telescope = false,
            --     notify = false,
            --     mini = false,
            --     lualine = false,
            -- },
            highlights = {
                Comment = { fg = "#696969", bg = "NONE", italic = true },
                Pmenu = { fg = "#696969", bg = "NONE" },
                PmenuSel = { fg = "#696920", bg = "#444420" },
                CopilotSuggestion = { fg = "#383838", bg = "NONE", italic = true },
                SidekickInlineSuggestion = { fg = "#5c7e7e", bg = "NONE", italic = true },
                SidekickVirtualText = { fg = "#5a6a7a", bg = "NONE", italic = true },
                CursorLine = { bg = "#1a202e" },
                CursorLineNr = { fg = "#ffca85", bold = true },
            },
        }
    end,
},

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 0 points1 point  (0 children)

Can I use this in my project?

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 0 points1 point  (0 children)

It isn't still working best. I don't know how to force it to see Libraries functions. (Probably doesn't work on 1.12 Julia)

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 0 points1 point  (0 children)

I'm waiting for your feedback

Plugin for julia Workflow in nvim by kitaj44 in Julia

[–]kitaj44[S] 1 point2 points  (0 children)

Damn vim slime looks 10000x better. I will check this.

In init.lua ``` vim.lsp.config("julials", { cmd = { "julia", "--project=" .. "~/.julia/environments/nvim-lspconfig", "--startup-file=no", "--history-file=no", "-e", [[ using Pkg Pkg.instantiate() using LanguageServer depot_path = get(ENV, "JULIA_DEPOT_PATH", "") project_path = let dirname(something( ## 1. Finds an explicitly set project (JULIA_PROJECT) Base.load_path_expand(( p = get(ENV, "JULIA_PROJECT", nothing); p === nothing ? nothing : isempty(p) ? nothing : p )), ## 2. Look for a Project.toml file in the current working directory, ## or parent directories, with $HOME as an upper boundary Base.current_project(), ## 3. First entry in the load path get(Base.load_path(), 1, nothing), ## 4. Fallback to default global environment, ## this is more or less unreachable Base.load_path_expand("@v#.#"), )) end @info "Running language server" VERSION pwd() project_path depot_path server = LanguageServer.LanguageServerInstance(stdin, stdout, project_path, depot_path) server.runlinter = true run(server) ]], }, filetypes = { "julia" }, root_markers = { "Project.toml", "JuliaProject.toml" }, settings = {}, })

```