Code Monkey home page Code Monkey logo

Comments (6)

hornyjailfish avatar hornyjailfish commented on August 23, 2024 5

just add in wanted section

function()
	return vim.fn["codeium#GetStatusString"]()
end

from codeium.vim.

technbuzz avatar technbuzz commented on August 23, 2024 1

How to show the one with the icon?
set statusline+=\{…\}%3{codeium#GetStatusString()}

from codeium.vim.

d3vr avatar d3vr commented on August 23, 2024 1

@technbuzz here's my config, I'm using folke/lazy.nvim

{
  "nvim-lualine/lualine.nvim",
  dependencies = { "nvim-tree/nvim-web-devicons" },

  config = function()
      local function show_codeium_status()
        return "{…}" .. vim.fn["codeium#GetStatusString"]()
      end

      require("lualine").setup({
        sections = {
          -- ...
          lualine_x = {
            { show_codeium_status },
            -- ...
          },
          -- ...
        },
      })
  end
}

from codeium.vim.

tanishqmanuja avatar tanishqmanuja commented on August 23, 2024 1

here's mine

return {
  'nvim-lualine/lualine.nvim',
  event = "VeryLazy",
  opts = {
    options = {
      icons_enabled = false,
      theme = 'onedark',
      component_separators = '|',
      section_separators = '',
    },
    sections = {
      lualine_a = {'mode'},
      lualine_b = {'branch', 'diff', 'diagnostics'},
      lualine_c = {'filename'},
      lualine_x = {
        { 
          'vim.fn["codeium#GetStatusString"]()',
          fmt = function(str) 
            return "suggestions " .. str:lower():match("^%s*(.-)%s*$")
          end 
        },
        'encoding', 'fileformat', 'filetype'
      },
      lualine_y = {'progress'},
      lualine_z = {'location'}
    },
  },
}

from codeium.vim.

Flamme13 avatar Flamme13 commented on August 23, 2024

Thanks for your answer. It works great.

from codeium.vim.

fortenforge avatar fortenforge commented on August 23, 2024

Thanks @hornyjailfish!

from codeium.vim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.