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
|
||||
dogdns
|
||||
erdtree
|
||||
erg
|
||||
emacs
|
||||
fd
|
||||
ffmpeg_6
|
||||
|
@ -59,6 +60,7 @@ in {
|
|||
poetry
|
||||
ripgrep
|
||||
rsync
|
||||
scriptisto
|
||||
sqlite
|
||||
tmux
|
||||
# vscode-fhs
|
||||
|
|
|
@ -19,6 +19,29 @@
|
|||
fugitive = {
|
||||
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 = {
|
||||
enable = true;
|
||||
};
|
||||
|
@ -27,11 +50,13 @@
|
|||
};
|
||||
lspconfig = {
|
||||
enable = true;
|
||||
preConfig = ''
|
||||
'';
|
||||
servers = {
|
||||
bashls.enable = true;
|
||||
gopls.enable = true;
|
||||
jsonls.enable = true;
|
||||
pyright.enable = true;
|
||||
pyright.enable = true; # In preference to attempting to use pylyzer
|
||||
nil.enable = true;
|
||||
rust-analyzer.enable = true;
|
||||
taplo.enable = true;
|
||||
|
@ -182,7 +207,6 @@
|
|||
vim-bbye
|
||||
vim-dispatch-neovim
|
||||
vim-expand-region
|
||||
vim-signify
|
||||
]
|
||||
)
|
||||
++ (with pkgs.vimExtraPlugins; [
|
||||
|
|
|
@ -28,3 +28,31 @@ local kind_icons = {
|
|||
Operator = "",
|
||||
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