My vim configuration
git clone https://github.com/m-col/vim-misc
Files | Refs | Readme

Commit 2de9e1056a0dedc5518c137a2354f57ff9fc29cf
Parent: b2976c2aaf21e5d485e2254d00f3c03ddbce8f11
Author: matt colligan <mlv@posteo.net>
Date: 2025-05-14 12:32:53 +0100
Committer: matt colligan <mlv@posteo.net>
Committed: 2025-05-14 12:32:53 +0100

remove branch from lualine

start/self/plugin/keybindings.vim Modified

@@ -124,7 +124,7 @@
 
 " ALE
 "nmap <silent> <C-S-f> <Plug>(ale_fix)
-nmap <silent> <C-[> <Plug>(ale_find_references)
+nmap <silent> <C-i> <Plug>(ale_find_references)
 nmap <silent> <C-]> <Plug>(ale_go_to_definition)
 
 " CtrlP (in addition to the default Ctrl-p binding)

start/self/plugin/init.lua Modified

@@ -8,5 +8,17 @@
 })
 
 require('lualine').setup({
-    options = { section_separators = '', component_separators = '', path = 3 }
+    options = {
+	section_separators = '',
+	component_separators = '',
+	path = 3,
+    },
+    sections = {
+	lualine_a = {'mode'},
+	lualine_b = {},
+	lualine_c = {'filename'},
+	lualine_x = {'encoding', 'fileformat', 'filetype'},
+	lualine_y = {'progress'},
+	lualine_z = {'location'}
+    },
 })