lualine
This commit is contained in:
parent
c4f18159af
commit
cbb978568b
3 changed files with 56 additions and 2 deletions
|
@ -33,6 +33,7 @@ in {
|
||||||
docker-client
|
docker-client
|
||||||
dogdns
|
dogdns
|
||||||
erdtree
|
erdtree
|
||||||
|
erg
|
||||||
emacs
|
emacs
|
||||||
fd
|
fd
|
||||||
ffmpeg_6
|
ffmpeg_6
|
||||||
|
@ -59,6 +60,7 @@ in {
|
||||||
poetry
|
poetry
|
||||||
ripgrep
|
ripgrep
|
||||||
rsync
|
rsync
|
||||||
|
scriptisto
|
||||||
sqlite
|
sqlite
|
||||||
tmux
|
tmux
|
||||||
# vscode-fhs
|
# vscode-fhs
|
||||||
|
|
|
@ -19,6 +19,29 @@
|
||||||
fugitive = {
|
fugitive = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
gitsigns = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
lualine = {
|
||||||
|
enable = true;
|
||||||
|
# theme = "bubbles_theme"; # Currently doesn't work
|
||||||
|
componentSeparators = {
|
||||||
|
left = "";
|
||||||
|
right = "";
|
||||||
|
};
|
||||||
|
sectionSeparators = {
|
||||||
|
left = "";
|
||||||
|
right = "";
|
||||||
|
};
|
||||||
|
sections = {
|
||||||
|
lualine_a = ["mode" {separator = {left = "";};} {right_padding = 2;}];
|
||||||
|
lualine_b = ["filename" "branch"];
|
||||||
|
lualine_c = ["%="];
|
||||||
|
lualine_x = [];
|
||||||
|
lualine_y = ["filetype" "progress"];
|
||||||
|
lualine_z = ["location" {separator = {right = "";};} {left_padding = 2;}];
|
||||||
|
};
|
||||||
|
};
|
||||||
luasnip = {
|
luasnip = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
@ -27,11 +50,13 @@
|
||||||
};
|
};
|
||||||
lspconfig = {
|
lspconfig = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
preConfig = ''
|
||||||
|
'';
|
||||||
servers = {
|
servers = {
|
||||||
bashls.enable = true;
|
bashls.enable = true;
|
||||||
gopls.enable = true;
|
gopls.enable = true;
|
||||||
jsonls.enable = true;
|
jsonls.enable = true;
|
||||||
pyright.enable = true;
|
pyright.enable = true; # In preference to attempting to use pylyzer
|
||||||
nil.enable = true;
|
nil.enable = true;
|
||||||
rust-analyzer.enable = true;
|
rust-analyzer.enable = true;
|
||||||
taplo.enable = true;
|
taplo.enable = true;
|
||||||
|
@ -182,7 +207,6 @@
|
||||||
vim-bbye
|
vim-bbye
|
||||||
vim-dispatch-neovim
|
vim-dispatch-neovim
|
||||||
vim-expand-region
|
vim-expand-region
|
||||||
vim-signify
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
++ (with pkgs.vimExtraPlugins; [
|
++ (with pkgs.vimExtraPlugins; [
|
||||||
|
|
|
@ -28,3 +28,31 @@ local kind_icons = {
|
||||||
Operator = "",
|
Operator = "",
|
||||||
TypeParameter = "",
|
TypeParameter = "",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local colors = {
|
||||||
|
blue = "#80a0ff",
|
||||||
|
cyan = "#79dac8",
|
||||||
|
black = "#080808",
|
||||||
|
white = "#c6c6c6",
|
||||||
|
red = "#ff5189",
|
||||||
|
violet = "#d183e8",
|
||||||
|
grey = "#303030",
|
||||||
|
}
|
||||||
|
|
||||||
|
local bubbles_theme = {
|
||||||
|
normal = {
|
||||||
|
a = { fg = colors.black, bg = colors.violet },
|
||||||
|
b = { fg = colors.white, bg = colors.grey },
|
||||||
|
c = { fg = colors.white },
|
||||||
|
},
|
||||||
|
|
||||||
|
insert = { a = { fg = colors.black, bg = colors.blue } },
|
||||||
|
visual = { a = { fg = colors.black, bg = colors.cyan } },
|
||||||
|
replace = { a = { fg = colors.black, bg = colors.red } },
|
||||||
|
|
||||||
|
inactive = {
|
||||||
|
a = { fg = colors.white, bg = colors.black },
|
||||||
|
b = { fg = colors.white, bg = colors.black },
|
||||||
|
c = { fg = colors.white },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue