add some vim plugins and friends
This commit is contained in:
parent
c2d7704eeb
commit
7e329b5c6e
|
@ -10,6 +10,9 @@
|
|||
gnome.cheese
|
||||
musescore
|
||||
libsForQt5.kdenlive
|
||||
xdotool
|
||||
texlive.combined.scheme-full
|
||||
zathura
|
||||
];
|
||||
|
||||
services.tlp.enable = true;
|
||||
|
@ -17,5 +20,7 @@
|
|||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.nameservers = [ "1.1.1.1" "9.9.9.9" ];
|
||||
|
||||
networking.hostName = "xps";
|
||||
}
|
||||
|
|
|
@ -62,6 +62,7 @@ in {
|
|||
pinentry-curses
|
||||
magic-wormhole
|
||||
xbrightness
|
||||
figlet
|
||||
|
||||
unzip
|
||||
lua-language-server
|
||||
|
|
|
@ -169,6 +169,8 @@ local packer = require('packer').startup(function(use)
|
|||
use 'L3MON4D3/LuaSnip'
|
||||
use 'https://github.com/vimwiki/vimwiki.git'
|
||||
use 'lervag/vimtex'
|
||||
use 'https://github.com/protex/better-digraphs.nvim'
|
||||
use 'https://github.com/itchyny/calendar.vim'
|
||||
use {
|
||||
"folke/which-key.nvim",
|
||||
config = function()
|
||||
|
@ -210,4 +212,8 @@ nnoremap('<leader>ff', function()
|
|||
require('telescope.builtin').find_files()
|
||||
end)
|
||||
|
||||
inoremap('<C-k><C-k>', function()
|
||||
require('better-digraphs').digraphs("insert")
|
||||
end)
|
||||
|
||||
return packer
|
||||
|
|
Loading…
Reference in New Issue