debian-dots

dotfiles (does the obvious)
git clone [email protected]:dracuxan/debian-dots.git
Log | Files | Refs | README | LICENSE

misic.lua (979B)


      1 -- Standalone plugins with less than 10 lines of config go here
      2 return {
      3 	{
      4 		-- Detect tabstop and shiftwidth automatically
      5 		"tpope/vim-sleuth",
      6 	},
      7 	{
      8 		-- Autoclose parentheses, brackets, quotes, etc.
      9 		"windwp/nvim-autopairs",
     10 		event = "InsertEnter",
     11 		config = true,
     12 		opts = {},
     13 	},
     14 	{
     15 		-- Highlight todo, notes, etc in comments
     16 		"folke/todo-comments.nvim",
     17 		event = "VimEnter",
     18 		dependencies = { "nvim-lua/plenary.nvim" },
     19 		opts = { signs = true },
     20 	},
     21 	{
     22 		-- High-performance color highlighter
     23 		"norcalli/nvim-colorizer.lua",
     24 		config = function()
     25 			require("colorizer").setup(nil, {
     26 				names = false,
     27 			})
     28 		end,
     29 	},
     30 	{
     31 		"alexghergh/nvim-tmux-navigation",
     32 		config = function()
     33 			require("nvim-tmux-navigation").setup({
     34 				disable_when_zoomed = true, -- defaults to false
     35 				keybindings = {
     36 					left = "<C-h>",
     37 					down = "<C-j>",
     38 					up = "<C-k>",
     39 					right = "<C-l>",
     40 					last_active = "<C-\\>",
     41 					next = "<C-Space>",
     42 				},
     43 			})
     44 		end,
     45 	},
     46 }