{"id":13412067,"url":"https://github.com/crispgm/nvim-tabline","last_synced_at":"2025-04-10T16:42:29.515Z","repository":{"id":42706483,"uuid":"338744302","full_name":"crispgm/nvim-tabline","owner":"crispgm","description":"nvim port of tabline.vim with Lua","archived":false,"fork":false,"pushed_at":"2024-06-03T03:11:20.000Z","size":92,"stargazers_count":83,"open_issues_count":1,"forks_count":17,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-03-24T14:38:33.693Z","etag":null,"topics":["neovim","neovim-lua","neovim-plugin","nvim-lua","tabline"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crispgm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-14T06:31:35.000Z","updated_at":"2025-03-19T16:26:01.000Z","dependencies_parsed_at":"2023-11-15T04:26:13.115Z","dependency_job_id":"769d3d78-e7bb-4c89-98f5-48475a242f3d","html_url":"https://github.com/crispgm/nvim-tabline","commit_stats":{"total_commits":30,"total_committers":4,"mean_commits":7.5,"dds":"0.33333333333333337","last_synced_commit":"287cd88157f98da76cb32ac7df7ec5c546414ec0"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crispgm%2Fnvim-tabline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crispgm%2Fnvim-tabline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crispgm%2Fnvim-tabline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crispgm%2Fnvim-tabline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crispgm","download_url":"https://codeload.github.com/crispgm/nvim-tabline/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248252728,"owners_count":21072703,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["neovim","neovim-lua","neovim-plugin","nvim-lua","tabline"],"created_at":"2024-07-30T20:01:20.681Z","updated_at":"2025-04-10T16:42:29.493Z","avatar_url":"https://github.com/crispgm.png","language":"Lua","readme":"# nvim-tabline\n\n\u003ca href=\"https://dotfyle.com/plugins/crispgm/nvim-tabline\"\u003e\n\t\u003cimg src=\"https://dotfyle.com/plugins/crispgm/nvim-tabline/shield?style=flat\" /\u003e\n\u003c/a\u003e\n\nA minimal Tabline plugin for Neovim, written in Lua.\nIt is basically a drop-in replacement for [tabline.vim](https://github.com/mkitt/tabline.vim) but with [a few differences](#Differences).\n\n![nvim-tabline-screenshots](screenshots/nvim-tabline.png)\n\n## Installation\n\nWith `lazy.nvim`:\n\n```lua\n{\n    'crispgm/nvim-tabline',\n    dependencies = { 'nvim-tree/nvim-web-devicons' }, -- optional\n    config = true,\n}\n```\n\n## Configuration\n\n```lua\nrequire('tabline').setup({opts})\n```\n\n### Defaults\n\n```lua\nrequire('tabline').setup({\n    show_index = true,           -- show tab index\n    show_modify = true,          -- show buffer modification indicator\n    show_icon = false,           -- show file extension icon\n    fnamemodify = ':t',          -- file name modifier string\n                                 -- can be a function to modify buffer name\n    modify_indicator = '[+]',    -- modify indicator\n    no_name = 'No name',         -- no name buffer name\n    brackets = { '[', ']' },     -- file name brackets surrounding\n    inactive_tab_max_length = 0  -- max length of inactive tab titles, 0 to ignore\n})\n```\n\n### Show Tabline\n\n```lua\n\" Only if there are at least two tabs (default)\nvim.opt.showtabline = 1\n\n\" Always\nvim.opt.showtabline = 2\n\n\" Never\nvim.opt.showtabline = 0\n```\n\n### Mappings\n\nVim's tabpage commands are powerful enough, `:help tabpage` for details.\nIf you need switch between tabs, [here is a great tutorial](https://superuser.com/questions/410982/in-vim-how-can-i-quickly-switch-between-tabs).\n\n### Highlights\n\nThe highlighting of the tab pages line follows vim settings. See `:help setting-tabline` for details.\n\n### Differences\n\nnvim-tabline is not exactly a Lua translation. There are some differences for configuration:\n\n- Control whether to display tab number (`show_index`) and buffer modification indicator (`show_modify`).\n- File extension icon with nvim-dev-icons.\n- Customize modify indicator and no name buffer name.\n- Close button (`g:tablineclosebutton`) is not supported.\n","funding_links":[],"categories":["Bars and Lines","Lua"],"sub_categories":["Tabline"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrispgm%2Fnvim-tabline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrispgm%2Fnvim-tabline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrispgm%2Fnvim-tabline/lists"}