nixvim most of the way there
This commit is contained in:
parent
4503aeb775
commit
87a21720f2
21
flake.lock
21
flake.lock
@ -319,6 +319,26 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nix-index-database": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1718011381,
|
||||||
|
"narHash": "sha256-sFXI+ZANp/OC+MwfJoZgPSf4xMdtzQMe1pS3FGti4C8=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-index-database",
|
||||||
|
"rev": "88ad3d7501e22b2401dd72734b032b7baa794434",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-index-database",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1703013332,
|
"lastModified": 1703013332,
|
||||||
@ -451,6 +471,7 @@
|
|||||||
"agenix": "agenix",
|
"agenix": "agenix",
|
||||||
"home-manager": "home-manager_2",
|
"home-manager": "home-manager_2",
|
||||||
"nix-colors": "nix-colors",
|
"nix-colors": "nix-colors",
|
||||||
|
"nix-index-database": "nix-index-database",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||||
"nixvim": "nixvim",
|
"nixvim": "nixvim",
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
inputs = {
|
inputs = {
|
||||||
# Nixpkgs
|
# Nixpkgs
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
|
nix-index-database.url = "github:nix-community/nix-index-database";
|
||||||
|
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
# You can access packages and modules from different nixpkgs revs
|
# You can access packages and modules from different nixpkgs revs
|
||||||
# at the same time. Here's an working example:
|
# at the same time. Here's an working example:
|
||||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
outputs,
|
outputs,
|
||||||
lib,
|
# lib,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
@ -11,8 +11,10 @@
|
|||||||
# You can import other home-manager modules here
|
# You can import other home-manager modules here
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
|
inputs.nix-index-database.hmModules.nix-index
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
# You can add overlays here
|
# You can add overlays here
|
||||||
overlays = [
|
overlays = [
|
||||||
@ -40,7 +42,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "traverseda";
|
username = "traverseda";
|
||||||
homeDirectory = "/home/traverseda";
|
homeDirectory = "/home/traverseda";
|
||||||
@ -50,6 +51,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
userName = "Alex Davies";
|
userName = "Alex Davies";
|
||||||
userEmail = "traverse.da@gmail.com";
|
userEmail = "traverse.da@gmail.com";
|
||||||
|
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
core = {
|
core = {
|
||||||
editor = "vim"; # Set default editor for Git
|
editor = "vim"; # Set default editor for Git
|
||||||
@ -75,47 +77,87 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# programs.nixvim = {
|
programs.nixvim = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# defaultEditor = true;
|
defaultEditor = true;
|
||||||
# viAlias = true;
|
viAlias = true;
|
||||||
# vimAlias = true;
|
vimAlias = true;
|
||||||
# plugins.bufferline.enable = true;
|
#We use bufferline for the top line
|
||||||
# plugins.which-key.enable = true;
|
plugins.bufferline.enable = true;
|
||||||
|
#And lualine for the bottom line
|
||||||
|
plugins.lualine = {
|
||||||
|
enable = true;
|
||||||
|
sections = {
|
||||||
|
lualine_x = [
|
||||||
|
{name= "hostname";}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
plugins.which-key.enable = true;
|
||||||
|
|
||||||
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
|
vim-suda
|
||||||
|
];
|
||||||
|
|
||||||
|
plugins.cmp.enable = true;
|
||||||
|
plugins.cmp-treesitter.enable = true;
|
||||||
|
plugins.indent-blankline.enable = true;
|
||||||
|
plugins.lsp-format.enable = true;
|
||||||
|
plugins.lsp = {
|
||||||
|
enable = true;
|
||||||
|
servers = {
|
||||||
|
ruff.enable = true;
|
||||||
|
html.enable = true;
|
||||||
|
nixd.enable = true;
|
||||||
|
dockerls.enable = true;
|
||||||
|
yamlls.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
colorschemes.tokyonight = {
|
||||||
|
enable = true;
|
||||||
|
settings.style = "night";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfigLua = ''
|
||||||
|
-- Automatically enter insert mode when opening a terminal
|
||||||
|
vim.api.nvim_create_autocmd("TermOpen", {
|
||||||
|
pattern = "*",
|
||||||
|
command = "startinsert"
|
||||||
|
})
|
||||||
|
-- Open files with sudo if needed
|
||||||
|
vim.g.suda_smart_edit = 1
|
||||||
|
'';
|
||||||
|
|
||||||
# plugins.cmp-tabby = {
|
globals.mapleader = " ";
|
||||||
# enable = true;
|
keymaps = [
|
||||||
# host = "localhost:8337";
|
{
|
||||||
# };
|
mode = "n";
|
||||||
#
|
key = "<C-a>c";
|
||||||
# globals.mapleader = " ";
|
options = { noremap = true; desc = "Open new terminal"; };
|
||||||
# keymaps = [
|
action = "<cmd>:term<cr>";
|
||||||
# {
|
}
|
||||||
# mode = "n";
|
{
|
||||||
# key = "<C-a>c";
|
mode = "n";
|
||||||
# options = { noremap = true; desc = "Open new terminal"; };
|
key = "<C-a>x";
|
||||||
# action = "<cmd>:term<cr>";
|
options = { noremap = true; desc = "Close tab"; };
|
||||||
# }
|
action = "<cmd>:bd<cr>";
|
||||||
# {
|
}
|
||||||
# mode = "n";
|
{
|
||||||
# key = "<C-a>x";
|
mode = "n";
|
||||||
# options = { noremap = true; desc = "Close tab"; };
|
key = "<C-a>s";
|
||||||
# action = "<cmd>:bd<cr>";
|
options = { noremap = true; desc = "Pick buffer"; };
|
||||||
# }
|
action = "<cmd>:BufferLinePick<CR>";
|
||||||
# {
|
}
|
||||||
# mode = "n";
|
{
|
||||||
# key = "<C-a>s";
|
mode = "t";
|
||||||
# options = { noremap = true; desc = "Pick buffer"; };
|
key = "<Esc><Esc>";
|
||||||
# action = "<cmd>:BufferLinePick<CR>";
|
options = { noremap = true; };
|
||||||
# }
|
action = "<C-\\><C-n>";
|
||||||
# {
|
}
|
||||||
# mode = "t";
|
];
|
||||||
# key = "<Esc><Esc>";
|
};
|
||||||
# options = { noremap = true; };
|
|
||||||
# action = "<C-\\><C-n>";
|
|
||||||
# }
|
|
||||||
# ];
|
|
||||||
# };
|
|
||||||
|
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true; # Enable SSH module
|
enable = true; # Enable SSH module
|
||||||
@ -127,12 +169,11 @@
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = [
|
||||||
pkgs.htop
|
pkgs.htop
|
||||||
pkgs.zsh
|
pkgs.zsh
|
||||||
pkgs.xclip
|
pkgs.xclip
|
||||||
pkgs.ripgrep
|
pkgs.ripgrep
|
||||||
pkgs.mosh
|
|
||||||
pkgs.waypipe
|
pkgs.waypipe
|
||||||
pkgs.pwgen
|
pkgs.pwgen
|
||||||
pkgs.chezmoi
|
pkgs.chezmoi
|
||||||
@ -167,6 +208,7 @@
|
|||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
|
autocd = false;
|
||||||
|
|
||||||
history.size = 10000;
|
history.size = 10000;
|
||||||
history.path = "${config.xdg.dataHome}/zsh/history";
|
history.path = "${config.xdg.dataHome}/zsh/history";
|
||||||
|
@ -100,6 +100,7 @@
|
|||||||
pkgs.comma
|
pkgs.comma
|
||||||
pkgs.home-manager
|
pkgs.home-manager
|
||||||
appimage-run
|
appimage-run
|
||||||
|
pkgs.linuxPackages.usbip
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
pkgs.qemu
|
||||||
pkgs.qgroundcontrol
|
pkgs.qgroundcontrol
|
||||||
pkgs.vscode
|
pkgs.vscode
|
||||||
pkgs.stdenv
|
pkgs.stdenv
|
||||||
|
Loading…
Reference in New Issue
Block a user