Compare commits

..

No commits in common. "2ec5840781c08373b9a4d400dad5b74eb70cd7ff" and "ebb96c9d5d44cf394abcf6bba3278fd655017ebd" have entirely different histories.

2 changed files with 4 additions and 15 deletions

View File

@ -18,15 +18,6 @@ pkgs: {
let mapleader = ',' let mapleader = ','
map <leader>n :lnext<CR> map <leader>n :lnext<CR>
map <leader>p :lprev<CR> map <leader>p :lprev<CR>
" Find files using Telescope command-line sugar.
nnoremap <leader>e <cmd>Telescope find_files<cr>
nnoremap <leader>g <cmd>Telescope live_grep<cr>
nnoremap <leader>b <cmd>Telescope buffers<cr>
nnoremap <leader>h <cmd>Telescope help_tags<cr>
" temporary fix for broken popup menu colors
" see here: https://github.com/nvim-telescope/telescope.nvim/issues/2145
hi NormalFloat ctermfg=LightGrey
''; '';
plugins = with pkgs.vimPlugins; [ plugins = with pkgs.vimPlugins; [
#context-vim #context-vim
@ -34,8 +25,8 @@ pkgs: {
#fzf #fzf
#gundo #gundo
python-mode python-mode
telescope-nvim #telescope-nvim
telescope-fzf-native-nvim #telescope-fzf-native-nvim
#nvim-treesitter #nvim-treesitter
vim-nix vim-nix
]; ];

View File

@ -200,12 +200,10 @@
system.stateVersion = "22.05"; # Did you read the comment? system.stateVersion = "22.05"; # Did you read the comment?
nix = { nix = {
maxJobs = 8;
gc = { gc = {
automatic = true; automatic = true;
}; };
settings = { settings.experimental-features = ["nix-command" "flakes"];
experimental-features = ["nix-command" "flakes"];
max-jobs = 4;
};
}; };
} }