add additional configuration

This commit is contained in:
randomuser 2023-11-21 11:09:16 -06:00
parent d3fc9ff203
commit 3fc2dc19aa
8 changed files with 38 additions and 39 deletions

View File

@ -58,7 +58,7 @@
libreoffice
anki
youtube-tui
ytfzf
kdenlive
libreoffice
i3

26
builds/rebuild.nix Normal file
View File

@ -0,0 +1,26 @@
{ stdenv
, lib
, bash
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "rebuild";
version = "1.00";
src = ./rebuild;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ bash ];
buildPhase = "";
installPhase = ''
mkdir -p $out/bin
cp $src/rebuild $out/bin
wrapProgram $out/bin/rebuild --prefix PATH : ${lib.makeBinPath [ bash ]}
'';
phases = [ "buildPhase" "installPhase" ];
}

View File

@ -15,7 +15,10 @@ if [ "$(exists "DP-1")" -gt 1 ]; then
exit 0
fi
if [ "$(exists "HDMI-1")" -gt 1 ] && [ "$(hostname)" = "mainsail" ]; then
printf "mainsail selected\nHDMI-1 detected only, doing that\n"
bspc monitor HDMI-1 -d 1 2 3 4 5 6 7 8 9
if [ "$(hostname)" = "mainsail" ]; then
# this is a tower, so there's only one configuration
printf "mainsail detected\n"
xrandr --output VGA-1 --left-of HDMI-1
bspc monitor VGA-1 -d 1 3 5 7 9
bspc monitor HDMI-1 -d 2 4 6 8 0
fi

View File

@ -28,6 +28,8 @@ in {
dig
htop
gnumake
(pkgs.callPackage ../builds/rebuild.nix {})
];
system.copySystemConfiguration = true;

View File

@ -157,11 +157,6 @@ local packer = require('packer').startup(function(use)
use 'lervag/vimtex'
use 'https://github.com/protex/better-digraphs.nvim'
use 'https://github.com/itchyny/calendar.vim'
use {
"empat94/nvim-rss",
requires = { "tami5/sqlite.lua" },
rocks = "luaexpat",
}
use {
"folke/which-key.nvim",
config = function()
@ -178,33 +173,6 @@ local packer = require('packer').startup(function(use)
end);
-- }}}
-- lsp configuration {{{
local lsp = require('lsp-zero').preset({})
lsp.on_attach(function(client, bufnr)
lsp.default_keymaps({buffer = bufnr})
end)
local lspconfig = require('lspconfig')
lsp.ensure_installed({
'rnix',
'jedi_language_server',
})
lspconfig.lua_ls.setup(lsp.nvim_lua_ls())
lspconfig.rnix.setup({})
lspconfig.jedi_language_server.setup({})
lsp.setup()
-- }}}
require("nvim-rss").setup({
feeds_dir = "/home/usr",
date_format = "%x %r",
verbose = false,
})
nnoremap('<leader>ff', function()
require('telescope.builtin').find_files()
end)

View File

@ -5,10 +5,10 @@ q
xdotool mousemove_relative -- {-5,-50,-20} 0
{ctrl +,shift +,_} j
xdotool mousemove_relative -- 0 {-5,-50,-20}
xdotool mousemove_relative -- 0 {5,50,20}
{ctrl +,shift +,_} k
xdotool mousemove_relative -- 0 {5,50,20}
xdotool mousemove_relative -- 0 {-5,-50,-20}
{ctrl +,shift +,_} l
xdotool mousemove_relative -- {5,50,20} 0

View File

@ -41,7 +41,7 @@ super + {_,ctrl +,shift + }{h,j,k,l}
bspc node -{f,p,s} {west,south,north,east}
super + {_,shift + } {1-9,0}
bspc {desktop -f,node -d} '^{1-9,10}'
bspc {desktop -f,node -d} '{1-9,10}'
super + {t,f,s}
bspc node -t {tiled,floating,fullscreen}