nix config

remove old config

-58
-58
home/profiles/nvim/default.nix
··· 19 19 programs.neovim = { 20 20 enable = true; 21 21 22 - # extraConfig = '' 23 - # filetype plugin on 24 - # set shortmess+=c 25 - 26 - # " Pasting 27 - # :map <leader>sy :!xclip -i<CR><CR> 28 - # :vmap <leader>sy "*y 29 - # :map <leader>sp :r!xclip -o<CR> 30 - 31 - # " lua config 32 - 33 - # -- zen mode 34 - # require('zen-mode').setup{ 35 - # window = { 36 - # backdrop = 1.0, -- shade the backdrop of the Zen window. Set to 1 to keep the same as Normal 37 - # -- height and width can be: 38 - # -- * an absolute number of cells when > 1 39 - # -- * a percentage of the width / height of the editor when <= 1 40 - # -- * a function that returns the width or the height 41 - # width = 120, -- width of the Zen window 42 - # height = 1, -- height of the Zen window 43 - # -- by default, no options are changed for the Zen window 44 - # -- uncomment any of the options below, or add other vim.wo options you want to apply 45 - # options = { 46 - # signcolumn = "no", -- disable signcolumn 47 - # number = false, -- disable number column 48 - # relativenumber = false, -- disable relative numbers 49 - # cursorline = false, -- disable cursorline 50 - # cursorcolumn = false, -- disable cursor column 51 - # foldcolumn = "0", -- disable fold column 52 - # list = false, -- disable whitespace characters 53 - # }, 54 - # }, 55 - # plugins = { 56 - # -- disable some global vim options (vim.o...) 57 - # -- comment the lines to not apply the options 58 - # options = { 59 - # enabled = true, 60 - # ruler = false, -- disables the ruler text in the cmd line area 61 - # showcmd = false, -- disables the command in the last line of the screen 62 - # }, 63 - # twilight = { enabled = true }, -- enable to start Twilight when zen mode opens 64 - # gitsigns = { enabled = false }, -- disables git signs 65 - # tmux = { enabled = false }, -- disables the tmux statusline 66 - # -- this will change the font size on kitty when in zen mode 67 - # -- to make this work, you need to set the following kitty options: 68 - # -- - allow_remote_control socket-only 69 - # -- - listen_on unix:/tmp/kitty 70 - # kitty = { 71 - # enabled = true, 72 - # font = "+2", -- font size increment 73 - # }, 74 - # }, 75 - # } 76 - # require('twilight').setup{} 77 - # EOF 78 - # ''; 79 - 80 22 extraPackages = with pkgs; [ 81 23 # used to compile tree-sitter grammar 82 24 # python-with-my-packages