Compare commits
2 Commits
b2690922d9
...
5904428cef
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5904428cef | ||
|
|
6c0c73add2 |
9
neovim/after/ftplugin/ada.lua
Normal file
9
neovim/after/ftplugin/ada.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
vim.opt.smarttab = false
|
||||
|
||||
vim.opt.tabstop = 4
|
||||
|
||||
vim.opt.shiftwidth = 3
|
||||
|
||||
vim.opt.expandtab = true
|
||||
|
||||
vim.opt.softtabstop = 3
|
||||
|
|
@ -52,6 +52,12 @@ require('packer').startup(function(use)
|
|||
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||
}
|
||||
use('airblade/vim-gitgutter')
|
||||
|
||||
use('janet-lang/janet.vim')
|
||||
use{
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
run = ':TSUpdate'
|
||||
}
|
||||
end)
|
||||
|
||||
require('SpecSwitcher').setup({
|
||||
|
|
@ -68,6 +74,8 @@ require('SpecSwitcher').setup({
|
|||
}
|
||||
})
|
||||
|
||||
vim.keymap.set('n', '<leader>n', require('SpecSwitcher').Switch_Open(false))
|
||||
|
||||
require('tokyonight').setup({
|
||||
style = "storm",
|
||||
light_style = "day",
|
||||
|
|
@ -87,3 +95,13 @@ require('lualine').setup({
|
|||
lualine_z = {'tabs'}
|
||||
}
|
||||
})
|
||||
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
ensure_installed = {"ada"},
|
||||
sync_install = false,
|
||||
auto_install = true,
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user