diff options
| author | Mike Vink <mike@pionative.com> | 2024-04-05 12:01:07 +0200 |
|---|---|---|
| committer | Mike Vink <mike@pionative.com> | 2024-04-05 12:01:07 +0200 |
| commit | d05d3476c1dbda8103b323b590252a974a714c9d (patch) | |
| tree | 37c65c38e349a6538af4a379c64911e9e6a62757 /mut | |
| parent | 1655468b949829a7bf6fe1a79a60a636e407c5ca (diff) | |
update macos env
Diffstat (limited to 'mut')
| -rw-r--r-- | mut/lf/lfrc | 1 | ||||
| -rw-r--r-- | mut/neovim/fnl/conf/pkgs.fnl | 1 | ||||
| -rw-r--r-- | mut/neovim/fnl/conf/pkgs/lualine.fnl | 8 | ||||
| -rw-r--r-- | mut/neovim/fnl/conf/settings.fnl | 2 |
4 files changed, 11 insertions, 1 deletions
diff --git a/mut/lf/lfrc b/mut/lf/lfrc index c34ba42..7047e2d 100644 --- a/mut/lf/lfrc +++ b/mut/lf/lfrc @@ -25,6 +25,7 @@ set hiddenfiles ".*:*.aux:*.log:*.bbl:*.bcf:*.blg:*.run.xml" set cleaner '~/.config/lf/cleaner' set previewer '~/.config/lf/scope' set autoquit true +set relativenumber cmd z %{{ echo "$1" > ~/lflogs diff --git a/mut/neovim/fnl/conf/pkgs.fnl b/mut/neovim/fnl/conf/pkgs.fnl index c48b40d..70e4805 100644 --- a/mut/neovim/fnl/conf/pkgs.fnl +++ b/mut/neovim/fnl/conf/pkgs.fnl @@ -6,5 +6,6 @@ (require :conf.pkgs.gitsigns) (require :conf.pkgs.oil) (require :conf.pkgs.lint) +(require :conf.pkgs.lualine) ;; (require :conf.pkgs.lsp_lines) ;; (require :conf.pkgs.null-ls) diff --git a/mut/neovim/fnl/conf/pkgs/lualine.fnl b/mut/neovim/fnl/conf/pkgs/lualine.fnl new file mode 100644 index 0000000..6f2d66b --- /dev/null +++ b/mut/neovim/fnl/conf/pkgs/lualine.fnl @@ -0,0 +1,8 @@ +(local lualine (require :lualine)) +(lualine.setup + {:winbar + {:lualine_a [:filename]} + :inactive_winbar + {:lualine_a [:filename]} + :tabline + {:lualine_a [:tabs]}}) diff --git a/mut/neovim/fnl/conf/settings.fnl b/mut/neovim/fnl/conf/settings.fnl index bc01181..1fbed85 100644 --- a/mut/neovim/fnl/conf/settings.fnl +++ b/mut/neovim/fnl/conf/settings.fnl @@ -70,5 +70,5 @@ ; winbar "%=%m %f" winbar "" hlsearch off - showtabline 0 + showtabline 1 cmdheight 1) |
