nixvim most of the way there

This commit is contained in:
Alex Davies 2024-06-11 16:44:13 -03:00
parent 4503aeb775
commit 87a21720f2
5 changed files with 113 additions and 44 deletions

View File

@ -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",

View File

@ -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";

View File

@ -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.cmp-tabby = { plugins.which-key.enable = true;
# enable = true;
# host = "localhost:8337"; extraPlugins = with pkgs.vimPlugins; [
# }; vim-suda
# ];
# globals.mapleader = " ";
# keymaps = [ plugins.cmp.enable = true;
# { plugins.cmp-treesitter.enable = true;
# mode = "n"; plugins.indent-blankline.enable = true;
# key = "<C-a>c"; plugins.lsp-format.enable = true;
# options = { noremap = true; desc = "Open new terminal"; }; plugins.lsp = {
# action = "<cmd>:term<cr>"; enable = true;
# } servers = {
# { ruff.enable = true;
# mode = "n"; html.enable = true;
# key = "<C-a>x"; nixd.enable = true;
# options = { noremap = true; desc = "Close tab"; }; dockerls.enable = true;
# action = "<cmd>:bd<cr>"; yamlls.enable = true;
# } };
# { };
# mode = "n";
# key = "<C-a>s"; colorschemes.tokyonight = {
# options = { noremap = true; desc = "Pick buffer"; }; enable = true;
# action = "<cmd>:BufferLinePick<CR>"; settings.style = "night";
# } };
# {
# mode = "t"; extraConfigLua = ''
# key = "<Esc><Esc>"; -- Automatically enter insert mode when opening a terminal
# options = { noremap = true; }; vim.api.nvim_create_autocmd("TermOpen", {
# action = "<C-\\><C-n>"; pattern = "*",
# } command = "startinsert"
# ]; })
# }; -- Open files with sudo if needed
vim.g.suda_smart_edit = 1
'';
globals.mapleader = " ";
keymaps = [
{
mode = "n";
key = "<C-a>c";
options = { noremap = true; desc = "Open new terminal"; };
action = "<cmd>:term<cr>";
}
{
mode = "n";
key = "<C-a>x";
options = { noremap = true; desc = "Close tab"; };
action = "<cmd>:bd<cr>";
}
{
mode = "n";
key = "<C-a>s";
options = { noremap = true; desc = "Pick buffer"; };
action = "<cmd>:BufferLinePick<CR>";
}
{
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";

View File

@ -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 = {

View File

@ -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