default js/ts and python setup

This commit is contained in:
Levente Gal 2024-03-06 14:50:14 +02:00
parent f764b7bacd
commit af466b6df8
12 changed files with 165 additions and 5 deletions

View file

@ -728,7 +728,7 @@ require('lazy').setup {
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
vim.cmd.colorscheme 'tokyonight-day'
-- You can configure highlights by doing something like
vim.cmd.hi 'Comment gui=none'
@ -808,16 +808,25 @@ require('lazy').setup {
-- Here are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line',
require 'kickstart.plugins.debug',
require 'kickstart.plugins.indent_line',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.
--
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
}
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et
-- Enable relative line numbers
vim.wo.relativenumber = true
-- Cursor line
vim.wo.cursorline = true
-- Mark default line with to 140 columns
vim.wo.colorcolumn = '140'