summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/incline.lua
blob: 3dab96d7fb8cde048264512353c42a3cf6772caf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
return { 'b0o/incline.nvim',
  function()
    vim.cmd.set('laststatus=3')

    require('incline').setup {
      hide = {
        focused_win = true,
        cursorline = true
      }
    }
  end
}