diff options
Diffstat (limited to 'nvim/lua/plugins')
| -rw-r--r-- | nvim/lua/plugins/lualine.lua | 8 | ||||
| -rw-r--r-- | nvim/lua/plugins/oil.lua | 1 | ||||
| -rw-r--r-- | nvim/lua/plugins/telescope.lua | 9 | ||||
| -rw-r--r-- | nvim/lua/plugins/treesitter.lua | 3 | 
4 files changed, 21 insertions, 0 deletions
| diff --git a/nvim/lua/plugins/lualine.lua b/nvim/lua/plugins/lualine.lua new file mode 100644 index 0000000..2356803 --- /dev/null +++ b/nvim/lua/plugins/lualine.lua @@ -0,0 +1,8 @@ +require('lualine').setup { +  options = { +    icons_enabled = true, +    theme = 'auto', +    section_separators = { left = '', right = '' }, +    component_separators = { left = '', right = '' } +  }, +} diff --git a/nvim/lua/plugins/oil.lua b/nvim/lua/plugins/oil.lua new file mode 100644 index 0000000..d24cfbb --- /dev/null +++ b/nvim/lua/plugins/oil.lua @@ -0,0 +1 @@ +require('oil').setup() diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua new file mode 100644 index 0000000..4744a68 --- /dev/null +++ b/nvim/lua/plugins/telescope.lua @@ -0,0 +1,9 @@ +local telescope = require('telescope') +telescope.load_extension('fzf') +vim.keymap.set('n', '<leader>tf', ':Telescope find_files<CR>')  -- file search +vim.keymap.set('n', '<leader>tb', ':Telescope buffers<CR>')     -- buffer peak +vim.keymap.set('n', '<leader>th', ':Telescope help_tags<CR>')   -- help menu +vim.keymap.set('n', '<leader>tt', ':Telescope treesitter <CR>') -- treesitter symbol menu +vim.keymap.set('n', '<leader>tp', ':Telescope builtin<CR>')     -- picker picker lmao + + diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua new file mode 100644 index 0000000..06536f3 --- /dev/null +++ b/nvim/lua/plugins/treesitter.lua @@ -0,0 +1,3 @@ +require('nvim-treesitter.configs').setup { +  highlight = { enable = true } +} | 
