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 = ','
map <leader>n :lnext<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; [
#context-vim
@ -34,8 +25,8 @@ pkgs: {
#fzf
#gundo
python-mode
telescope-nvim
telescope-fzf-native-nvim
#telescope-nvim
#telescope-fzf-native-nvim
#nvim-treesitter
vim-nix
];

View File

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