Compare commits

..

No commits in common. "5bef12e5583e4ba2ff40ff297522b7668f0450cc" and "9a4d17e07dc53b04997052a23ad8768432ba1041" have entirely different histories.

5 changed files with 6 additions and 32 deletions

View file

@ -9,7 +9,7 @@
}; };
outputs = { self, nixpkgs, home-manager, ... }@inputs: outputs = { self, nixpkgs, home-manager, ... }@inputs:
let let
stateVersion = "23.11"; stateVersion = "23.05";
in rec { in rec {
nixosConfigurations = { nixosConfigurations = {

View file

@ -65,15 +65,7 @@ in
type = "lua"; type = "lua";
config = (builtins.readFile ./files/luasnip.lua); config = (builtins.readFile ./files/luasnip.lua);
} }
{ indent-blankline-nvim
plugin = indent-blankline-nvim;
type = "lua";
config =''
require("ibl").setup{
indent = { char = ""},
}
'';
}
{ {
plugin = nvim-lspconfig; plugin = nvim-lspconfig;
type = "lua"; type = "lua";

View file

@ -15,16 +15,8 @@ vim.opt.hlsearch = true -- search: hightlight terms
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.incsearch = true vim.opt.incsearch = true
vim.opt.laststatus = 1 vim.opt.laststatus = 1
-- show special character -- show special character
vim.opt.listchars = { vim.opt.listchars = {tab = '', trail = '', eol = '', extends = '' }
tab = '',
trail = '',
space = '·',
eol = '',
extends = '',
precedes = "<"
}
vim.opt.signcolumn = "yes" -- alway show sign column vim.opt.signcolumn = "yes" -- alway show sign column
vim.opt.number = true vim.opt.number = true

View file

@ -5,11 +5,9 @@
dejavu_fonts dejavu_fonts
emojione emojione
font-awesome font-awesome
grim
lato lato
liberation_ttf liberation_ttf
libertine libertine
libnotify
(nerdfonts.override { (nerdfonts.override {
fonts = [ fonts = [
"FiraCode" "FiraCode"
@ -17,7 +15,8 @@
}) })
noto-fonts-emoji noto-fonts-emoji
noto-fonts-cjk noto-fonts-cjk
slurp
libnotify
wl-clipboard wl-clipboard
xdg-utils xdg-utils
]; ];

View file

@ -1,18 +1,9 @@
{ pkgs, ...}: { config, pkgs, ...}:
{ {
xdg.portal = { xdg.portal = {
enable = true; enable = true;
wlr.enable = true; wlr.enable = true;
# gtk portal needed to make gtk apps happy # gtk portal needed to make gtk apps happy
extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
config = {
common = {
default = [
"gtk"
];
"org.freedesktop.impl.portal.ScreenCast" = "wlr";
"org.freedesktop.impl.portal.Screenshot" = "wlr";
};
};
}; };
} }