Compare commits
8 Commits
53f752a3b2
...
6ed2ef0b10
Author | SHA1 | Date | |
---|---|---|---|
6ed2ef0b10 | |||
f7b0ab08f4 | |||
1132328a29 | |||
0abc212049 | |||
f3ed4def82 | |||
2d486c13ca | |||
81a8931936 | |||
84f2c51848 |
0
Jenkinsfile
vendored
0
Jenkinsfile
vendored
@ -25,6 +25,11 @@ in
|
|||||||
pkgs.fd
|
pkgs.fd
|
||||||
pkgs.ripgrep
|
pkgs.ripgrep
|
||||||
pkgs.just
|
pkgs.just
|
||||||
|
pkgs.chafa
|
||||||
|
pkgs.fontpreview
|
||||||
|
pkgs.poppler_utils
|
||||||
|
pkgs.tdf
|
||||||
|
pkgs.viu
|
||||||
|
|
||||||
# cli markdown tool
|
# cli markdown tool
|
||||||
pkgs.glow
|
pkgs.glow
|
||||||
@ -136,6 +141,8 @@ in
|
|||||||
nvim-treesitter
|
nvim-treesitter
|
||||||
telescope-fzf-native-nvim
|
telescope-fzf-native-nvim
|
||||||
telescope-file-browser-nvim
|
telescope-file-browser-nvim
|
||||||
|
telescope-media-files-nvim
|
||||||
|
telescope-symbols-nvim
|
||||||
# need fzf for parrot
|
# need fzf for parrot
|
||||||
fzf-lua
|
fzf-lua
|
||||||
ctrlp-vim
|
ctrlp-vim
|
||||||
@ -178,7 +185,7 @@ in
|
|||||||
|
|
||||||
# custom plugins from flakes
|
# custom plugins from flakes
|
||||||
pkgs.customVimPlugins.cmp-vimtex
|
pkgs.customVimPlugins.cmp-vimtex
|
||||||
pkgs.customVimPlugins.spaceport-nvim
|
# pkgs.customVimPlugins.spaceport-nvim
|
||||||
pkgs.customVimPlugins.nomodoro
|
pkgs.customVimPlugins.nomodoro
|
||||||
pkgs.customVimPlugins.parrot-nvim
|
pkgs.customVimPlugins.parrot-nvim
|
||||||
pkgs.customVimPlugins.nvim-web-devicons
|
pkgs.customVimPlugins.nvim-web-devicons
|
||||||
@ -259,6 +266,7 @@ in
|
|||||||
unbind '"'
|
unbind '"'
|
||||||
unbind %
|
unbind %
|
||||||
set -s copy-command 'xsel -bi'
|
set -s copy-command 'xsel -bi'
|
||||||
|
bind -N "Change layout" -T prefix % next-layout
|
||||||
bind -N "Horizontal split" -T prefix | split-window -h
|
bind -N "Horizontal split" -T prefix | split-window -h
|
||||||
bind -N "Vertical split" -T prefix - split-window -v
|
bind -N "Vertical split" -T prefix - split-window -v
|
||||||
bind -N "Enter copy mode" -T prefix Space copy-mode
|
bind -N "Enter copy mode" -T prefix Space copy-mode
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
-- load file browser and telescope
|
-- load file browser and telescope
|
||||||
${builtins.readFile ./telescope.lua}
|
${builtins.readFile ./telescope.lua}
|
||||||
|
|
||||||
${builtins.readFile ./spaceport.lua}
|
-- $ --{builtins.readFile ./spaceport.lua}
|
||||||
|
|
||||||
-- color scheme
|
-- color scheme
|
||||||
require("rose-pine").setup({})
|
require("rose-pine").setup({})
|
||||||
|
@ -9,6 +9,7 @@ require("telescope").setup({
|
|||||||
|
|
||||||
require("telescope").load_extension("file_browser")
|
require("telescope").load_extension("file_browser")
|
||||||
require("telescope").load_extension("fzf")
|
require("telescope").load_extension("fzf")
|
||||||
|
require("telescope").load_extension("media_files")
|
||||||
|
|
||||||
vim.api.nvim_set_keymap("n", "<leader>tt", "<cmd>Telescope<CR>", { noremap = true })
|
vim.api.nvim_set_keymap("n", "<leader>tt", "<cmd>Telescope<CR>", { noremap = true })
|
||||||
vim.api.nvim_set_keymap("n", "<leader>tg", "<cmd>Telescope live_grep<CR>", { noremap = true })
|
vim.api.nvim_set_keymap("n", "<leader>tg", "<cmd>Telescope live_grep<CR>", { noremap = true })
|
||||||
|
@ -40,6 +40,10 @@ in
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
|
trusted-users = [
|
||||||
|
"root"
|
||||||
|
"@wheel"
|
||||||
|
];
|
||||||
trusted-substituters = [ "http://attic.baklava" ];
|
trusted-substituters = [ "http://attic.baklava" ];
|
||||||
trusted-public-keys = [ "systems:tvbHIThn7MAwvgMSiYR3ULVlL6cBrA40afqGuextnNQ=" ];
|
trusted-public-keys = [ "systems:tvbHIThn7MAwvgMSiYR3ULVlL6cBrA40afqGuextnNQ=" ];
|
||||||
};
|
};
|
||||||
|
@ -54,6 +54,12 @@ in
|
|||||||
withDocker = false;
|
withDocker = false;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
|
(
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
nix.registry.nixpkgs.flake = inputs.nixpkgs-24-11;
|
||||||
|
}
|
||||||
|
)
|
||||||
./commonWSL-configuration.nix
|
./commonWSL-configuration.nix
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
inputs.homeManager-24-11.nixosModules.home-manager
|
inputs.homeManager-24-11.nixosModules.home-manager
|
||||||
@ -87,6 +93,12 @@ in
|
|||||||
withDocker = true;
|
withDocker = true;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
|
(
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
nix.registry.nixpkgs.flake = inputs.nixpkgs-24-11;
|
||||||
|
}
|
||||||
|
)
|
||||||
./commonWSL-configuration.nix
|
./commonWSL-configuration.nix
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
inputs.homeManager-24-11.nixosModules.home-manager
|
inputs.homeManager-24-11.nixosModules.home-manager
|
||||||
|
Loading…
x
Reference in New Issue
Block a user