add some vim plugins and friends

This commit is contained in:
randomuser 2023-08-18 07:49:16 -05:00
parent c2d7704eeb
commit 7e329b5c6e
3 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,9 @@
gnome.cheese gnome.cheese
musescore musescore
libsForQt5.kdenlive libsForQt5.kdenlive
xdotool
texlive.combined.scheme-full
zathura
]; ];
services.tlp.enable = true; services.tlp.enable = true;
@ -17,5 +20,7 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
networking.nameservers = [ "1.1.1.1" "9.9.9.9" ];
networking.hostName = "xps"; networking.hostName = "xps";
} }

View File

@ -62,6 +62,7 @@ in {
pinentry-curses pinentry-curses
magic-wormhole magic-wormhole
xbrightness xbrightness
figlet
unzip unzip
lua-language-server lua-language-server

View File

@ -169,6 +169,8 @@ local packer = require('packer').startup(function(use)
use 'L3MON4D3/LuaSnip' use 'L3MON4D3/LuaSnip'
use 'https://github.com/vimwiki/vimwiki.git' use 'https://github.com/vimwiki/vimwiki.git'
use 'lervag/vimtex' use 'lervag/vimtex'
use 'https://github.com/protex/better-digraphs.nvim'
use 'https://github.com/itchyny/calendar.vim'
use { use {
"folke/which-key.nvim", "folke/which-key.nvim",
config = function() config = function()
@ -210,4 +212,8 @@ nnoremap('<leader>ff', function()
require('telescope.builtin').find_files() require('telescope.builtin').find_files()
end) end)
inoremap('<C-k><C-k>', function()
require('better-digraphs').digraphs("insert")
end)
return packer return packer