misc updates
This commit is contained in:
parent
68028745ba
commit
ea430b0b81
5 changed files with 93 additions and 55 deletions
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
{...}: {
|
||||
# Import all your configuration modules here
|
||||
# imports = [./bufferline.nix];
|
||||
imports = [
|
||||
|
@ -64,6 +64,6 @@
|
|||
tmux-navigator.enable = true;
|
||||
fugitive.enable = true;
|
||||
comment.enable = true;
|
||||
rustaceanvim.enable = true;
|
||||
fidget.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -41,15 +41,9 @@
|
|||
ruff.enable = true;
|
||||
pyright.enable = true;
|
||||
|
||||
# lua (nvim config)
|
||||
lua-ls.enable = true;
|
||||
|
||||
# bash
|
||||
bashls.enable = true;
|
||||
|
||||
# haskell
|
||||
hls.enable = true;
|
||||
|
||||
# json
|
||||
jsonls.enable = true;
|
||||
|
||||
|
@ -65,6 +59,18 @@
|
|||
# elixir
|
||||
elixirls.enable = true;
|
||||
|
||||
terraformls.enable = true;
|
||||
tflint.enable = true;
|
||||
|
||||
# rust
|
||||
rust_analyzer = {
|
||||
enable = true;
|
||||
# Rely on tooling from dev environment
|
||||
package = null;
|
||||
installCargo = false;
|
||||
installRustc = false;
|
||||
};
|
||||
|
||||
# nix
|
||||
nixd = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,13 +1,15 @@
|
|||
{
|
||||
plugins.lualine = {
|
||||
enable = true;
|
||||
componentSeparators = {
|
||||
right = "";
|
||||
left = "";
|
||||
};
|
||||
"sectionSeparators" = {
|
||||
right = "";
|
||||
left = "";
|
||||
settings.options = {
|
||||
component_separators = {
|
||||
right = "";
|
||||
left = "";
|
||||
};
|
||||
section_separators = {
|
||||
right = "";
|
||||
left = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
plugins.web-devicons.enable = true;
|
||||
|
||||
keymaps = [
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue