Compare commits
1 commit
6b27c39f5d
...
af7eb4bf7e
Author | SHA1 | Date | |
---|---|---|---|
af7eb4bf7e |
4 changed files with 3 additions and 44 deletions
|
@ -2,7 +2,7 @@ _: {
|
||||||
autocmds = rec {
|
autocmds = rec {
|
||||||
## [String] | String -> String -> [String] | String -> String -> String -> AttrSet
|
## [String] | String -> String -> [String] | String -> String -> String -> AttrSet
|
||||||
mk = event: group': pattern: callback: desc: let
|
mk = event: group': pattern: callback: desc: let
|
||||||
group = "marleyvim_${group'}";
|
group = "marleyos_${group'}";
|
||||||
in {
|
in {
|
||||||
inherit event group pattern callback desc;
|
inherit event group pattern callback desc;
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
in {
|
in {
|
||||||
autoGroups =
|
autoGroups =
|
||||||
mapListToAttrs (i: {
|
mapListToAttrs (i: {
|
||||||
name = "marleyvim_${i}";
|
name = "marleyos_${i}";
|
||||||
value = {clear = true;};
|
value = {clear = true;};
|
||||||
}) [
|
}) [
|
||||||
"checktime"
|
"checktime"
|
||||||
|
|
|
@ -7,11 +7,6 @@
|
||||||
inherit (lib.marleyvim) icons keys autocmds;
|
inherit (lib.marleyvim) icons keys autocmds;
|
||||||
inherit (helpers) mkRaw;
|
inherit (helpers) mkRaw;
|
||||||
in {
|
in {
|
||||||
plugins.mini = {
|
|
||||||
enable = true;
|
|
||||||
modules.icons = {};
|
|
||||||
};
|
|
||||||
|
|
||||||
plugins.bufferline = {
|
plugins.bufferline = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -53,7 +48,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
autoGroups.marleyvim_bufferline.clear = true;
|
autoGroups.marleyos_bufferline.clear = true;
|
||||||
autoCmd = [
|
autoCmd = [
|
||||||
(autocmds.mk' ["BufAdd" "BufDelete"] "bufferline" (
|
(autocmds.mk' ["BufAdd" "BufDelete"] "bufferline" (
|
||||||
mkRaw ''
|
mkRaw ''
|
|
@ -1,36 +0,0 @@
|
||||||
_: {
|
|
||||||
plugins.lualine = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
luaConfig.pre.__raw = ''
|
|
||||||
vim.g.lualine_laststatus = vim.o.laststatus
|
|
||||||
if vim.fn.argc(-1) > 0 then
|
|
||||||
-- set an empty statusline till lualine loads
|
|
||||||
vim.o.statusline = " "
|
|
||||||
else
|
|
||||||
-- hide the statusline on the starter page
|
|
||||||
vim.o.laststatus = 0
|
|
||||||
end
|
|
||||||
'';
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
options = {
|
|
||||||
theme = "auto";
|
|
||||||
globalstatus.__raw = "vim.o.laststatus == 3";
|
|
||||||
disabled_filetypes.statusline = [
|
|
||||||
"dashboard"
|
|
||||||
"alpha"
|
|
||||||
"ministarter"
|
|
||||||
"snacks_dashboard"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
sections = {
|
|
||||||
lualine_a = ["mode"];
|
|
||||||
lualine_b = ["branch"];
|
|
||||||
|
|
||||||
lualine_c = [
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue