|
@@ -1,3 +1,28 @@
|
|
|
+require('gitsigns').setup()
|
|
|
+
|
|
|
+require('mini.statusline').setup({
|
|
|
+ content = {
|
|
|
+ active = function()
|
|
|
+ local mode, mode_hl = MiniStatusline.section_mode({ trunc_width = 120 })
|
|
|
+ local git = MiniStatusline.section_git({ trunc_width = 75, icon = '' })
|
|
|
+ local diagnostics = MiniStatusline.section_diagnostics({ trunc_width = 75, icon = '' })
|
|
|
+ local filename = MiniStatusline.section_filename({ trunc_width = 140 })
|
|
|
+ local fileinfo = MiniStatusline.section_fileinfo({ trunc_width = 120 })
|
|
|
+ local location = MiniStatusline.section_location({ trunc_width = 75 })
|
|
|
+
|
|
|
+ return MiniStatusline.combine_groups({
|
|
|
+ { hl = mode_hl, strings = { mode } },
|
|
|
+ { hl = 'MiniStatuslineDevinfo', strings = { git, diagnostics } },
|
|
|
+ '%<', -- Mark general truncate point
|
|
|
+ { hl = 'MiniStatuslineFilename', strings = { filename } },
|
|
|
+ '%=', -- End left alignment
|
|
|
+ { hl = 'MiniStatuslineFileinfo', strings = { fileinfo } },
|
|
|
+ { hl = mode_hl, strings = { location } },
|
|
|
+ })
|
|
|
+ end
|
|
|
+ },
|
|
|
+})
|
|
|
+
|
|
|
require('nvim-treesitter.configs').setup {
|
|
|
highlight = {
|
|
|
enable = true,
|